2014-12-30 12:16:42 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
//! Reduced graph building
|
|
|
|
//!
|
|
|
|
//! Here we build the "reduced graph": the graph of the module tree without
|
|
|
|
//! any imports resolved.
|
|
|
|
|
2015-04-28 18:36:22 -05:00
|
|
|
use DefModifiers;
|
2015-03-15 16:44:19 -05:00
|
|
|
use resolve_imports::ImportDirective;
|
|
|
|
use resolve_imports::ImportDirectiveSubclass::{self, SingleImport, GlobImport};
|
2014-12-30 12:16:42 -06:00
|
|
|
use Module;
|
2016-01-13 19:42:45 -06:00
|
|
|
use Namespace::{self, TypeNS, ValueNS};
|
2016-02-07 15:34:23 -06:00
|
|
|
use {NameBinding, NameBindingKind};
|
2016-02-17 16:45:05 -06:00
|
|
|
use module_to_string;
|
2016-01-11 15:19:29 -06:00
|
|
|
use ParentLink::{ModuleParentLink, BlockParentLink};
|
2014-12-30 12:16:42 -06:00
|
|
|
use Resolver;
|
2015-03-15 16:44:19 -05:00
|
|
|
use resolve_imports::Shadowable;
|
2015-12-20 15:00:43 -06:00
|
|
|
use {resolve_error, resolve_struct_error, ResolutionError};
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2015-11-24 16:00:26 -06:00
|
|
|
use rustc::middle::cstore::{CrateStore, ChildItem, DlDef, DlField, DlImpl};
|
2014-12-30 12:16:42 -06:00
|
|
|
use rustc::middle::def::*;
|
2015-09-17 13:29:59 -05:00
|
|
|
use rustc::middle::def_id::{CRATE_DEF_INDEX, DefId};
|
2016-01-17 13:57:54 -06:00
|
|
|
use rustc::middle::ty::VariantKind;
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2015-07-31 02:04:06 -05:00
|
|
|
use syntax::ast::{Name, NodeId};
|
2015-09-14 04:58:20 -05:00
|
|
|
use syntax::attr::AttrMetaMethods;
|
2015-07-28 11:07:20 -05:00
|
|
|
use syntax::parse::token::special_idents;
|
2014-12-30 12:16:42 -06:00
|
|
|
use syntax::codemap::{Span, DUMMY_SP};
|
2015-07-31 02:04:06 -05:00
|
|
|
|
|
|
|
use rustc_front::hir;
|
2015-12-11 21:29:35 -06:00
|
|
|
use rustc_front::hir::{Block, DeclItem};
|
2015-07-31 02:04:06 -05:00
|
|
|
use rustc_front::hir::{ForeignItem, ForeignItemFn, ForeignItemStatic};
|
|
|
|
use rustc_front::hir::{Item, ItemConst, ItemEnum, ItemExternCrate, ItemFn};
|
|
|
|
use rustc_front::hir::{ItemForeignMod, ItemImpl, ItemMod, ItemStatic, ItemDefaultImpl};
|
|
|
|
use rustc_front::hir::{ItemStruct, ItemTrait, ItemTy, ItemUse};
|
2016-02-26 14:59:35 -06:00
|
|
|
use rustc_front::hir::{PathListIdent, PathListMod, StmtDecl};
|
2015-07-31 02:04:06 -05:00
|
|
|
use rustc_front::hir::{Variant, ViewPathGlob, ViewPathList, ViewPathSimple};
|
|
|
|
use rustc_front::hir::Visibility;
|
2015-11-17 17:56:13 -06:00
|
|
|
use rustc_front::intravisit::{self, Visitor};
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
use std::mem::replace;
|
2014-12-22 11:04:23 -06:00
|
|
|
use std::ops::{Deref, DerefMut};
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
struct GraphBuilder<'a, 'b: 'a, 'tcx: 'b> {
|
|
|
|
resolver: &'a mut Resolver<'b, 'tcx>,
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2015-01-01 13:53:20 -06:00
|
|
|
impl<'a, 'b:'a, 'tcx:'b> Deref for GraphBuilder<'a, 'b, 'tcx> {
|
|
|
|
type Target = Resolver<'b, 'tcx>;
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
fn deref(&self) -> &Resolver<'b, 'tcx> {
|
|
|
|
&*self.resolver
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-01 13:53:20 -06:00
|
|
|
impl<'a, 'b:'a, 'tcx:'b> DerefMut for GraphBuilder<'a, 'b, 'tcx> {
|
2014-12-30 12:16:42 -06:00
|
|
|
fn deref_mut(&mut self) -> &mut Resolver<'b, 'tcx> {
|
|
|
|
&mut *self.resolver
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
trait ToNameBinding<'a> {
|
|
|
|
fn to_name_binding(self) -> NameBinding<'a>;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ToNameBinding<'a> for (Module<'a>, Span) {
|
|
|
|
fn to_name_binding(self) -> NameBinding<'a> {
|
|
|
|
NameBinding::create_from_module(self.0, Some(self.1))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> ToNameBinding<'a> for (Def, Span, DefModifiers) {
|
|
|
|
fn to_name_binding(self) -> NameBinding<'a> {
|
2016-02-07 15:34:23 -06:00
|
|
|
let kind = NameBindingKind::Def(self.0);
|
|
|
|
NameBinding { modifiers: self.2, kind: kind, span: Some(self.1) }
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
impl<'a, 'b:'a, 'tcx:'b> GraphBuilder<'a, 'b, 'tcx> {
|
|
|
|
/// Constructs the reduced graph for the entire crate.
|
2015-07-31 02:04:06 -05:00
|
|
|
fn build_reduced_graph(self, krate: &hir::Crate) {
|
2014-12-30 12:16:42 -06:00
|
|
|
let mut visitor = BuildReducedGraphVisitor {
|
2016-01-11 15:19:29 -06:00
|
|
|
parent: self.graph_root,
|
2014-12-30 12:16:42 -06:00
|
|
|
builder: self,
|
|
|
|
};
|
2015-11-17 17:56:13 -06:00
|
|
|
intravisit::walk_crate(&mut visitor, krate);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
/// Defines `name` in namespace `ns` of module `parent` to be `def` if it is not yet defined.
|
|
|
|
fn try_define<T>(&self, parent: Module<'b>, name: Name, ns: Namespace, def: T)
|
|
|
|
where T: ToNameBinding<'b>
|
|
|
|
{
|
2016-02-14 23:18:55 -06:00
|
|
|
let _ = parent.try_define_child(name, ns, def.to_name_binding());
|
2016-01-13 19:42:45 -06:00
|
|
|
}
|
2015-11-17 03:10:41 -06:00
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
/// Defines `name` in namespace `ns` of module `parent` to be `def` if it is not yet defined;
|
|
|
|
/// otherwise, reports an error.
|
|
|
|
fn define<T: ToNameBinding<'b>>(&self, parent: Module<'b>, name: Name, ns: Namespace, def: T) {
|
2016-02-14 23:18:55 -06:00
|
|
|
let binding = def.to_name_binding();
|
|
|
|
let old_binding = match parent.try_define_child(name, ns, binding.clone()) {
|
2016-02-07 18:54:31 -06:00
|
|
|
Ok(()) => return,
|
|
|
|
Err(old_binding) => old_binding,
|
2016-01-29 16:21:36 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let span = binding.span.unwrap_or(DUMMY_SP);
|
|
|
|
if !old_binding.is_extern_crate() && !binding.is_extern_crate() {
|
2016-01-13 19:42:45 -06:00
|
|
|
// Record an error here by looking up the namespace that had the duplicate
|
|
|
|
let ns_str = match ns { TypeNS => "type or module", ValueNS => "value" };
|
|
|
|
let resolution_error = ResolutionError::DuplicateDefinition(ns_str, name);
|
|
|
|
let mut err = resolve_struct_error(self, span, resolution_error);
|
|
|
|
|
2016-01-29 16:21:36 -06:00
|
|
|
if let Some(sp) = old_binding.span {
|
2016-01-13 19:42:45 -06:00
|
|
|
let note = format!("first definition of {} `{}` here", ns_str, name);
|
|
|
|
err.span_note(sp, ¬e);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2016-01-13 19:42:45 -06:00
|
|
|
err.emit();
|
2016-01-29 16:21:36 -06:00
|
|
|
} else if old_binding.is_extern_crate() && binding.is_extern_crate() {
|
|
|
|
span_err!(self.session,
|
|
|
|
span,
|
|
|
|
E0259,
|
|
|
|
"an external crate named `{}` has already been imported into this module",
|
|
|
|
name);
|
|
|
|
} else {
|
|
|
|
span_err!(self.session,
|
|
|
|
span,
|
|
|
|
E0260,
|
|
|
|
"the name `{}` conflicts with an external crate \
|
|
|
|
that has been imported into this module",
|
|
|
|
name);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn block_needs_anonymous_module(&mut self, block: &Block) -> bool {
|
2016-01-27 04:51:22 -06:00
|
|
|
fn is_item(statement: &hir::Stmt) -> bool {
|
|
|
|
if let StmtDecl(ref declaration, _) = statement.node {
|
|
|
|
if let DeclItem(_) = declaration.node {
|
|
|
|
return true;
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
2016-01-27 04:51:22 -06:00
|
|
|
false
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-27 04:51:22 -06:00
|
|
|
// If any statements are items, we need to create an anonymous module
|
|
|
|
block.stmts.iter().any(is_item)
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Constructs the reduced graph for one item.
|
2016-01-11 15:19:29 -06:00
|
|
|
fn build_reduced_graph_for_item(&mut self, item: &Item, parent: Module<'b>) -> Module<'b> {
|
2015-09-19 20:50:30 -05:00
|
|
|
let name = item.name;
|
2014-12-30 12:16:42 -06:00
|
|
|
let sp = item.span;
|
2015-07-31 02:04:06 -05:00
|
|
|
let is_public = item.vis == hir::Public;
|
2015-04-28 18:36:22 -05:00
|
|
|
let modifiers = if is_public {
|
|
|
|
DefModifiers::PUBLIC
|
|
|
|
} else {
|
|
|
|
DefModifiers::empty()
|
|
|
|
} | DefModifiers::IMPORTABLE;
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
match item.node {
|
2014-12-23 13:34:36 -06:00
|
|
|
ItemUse(ref view_path) => {
|
|
|
|
// Extract and intern the module part of the path. For
|
|
|
|
// globs and lists, the path is found directly in the AST;
|
|
|
|
// for simple paths we have to munge the path a little.
|
|
|
|
let module_path = match view_path.node {
|
|
|
|
ViewPathSimple(_, ref full_path) => {
|
|
|
|
full_path.segments
|
2015-10-26 14:31:11 -05:00
|
|
|
.split_last()
|
|
|
|
.unwrap()
|
|
|
|
.1
|
|
|
|
.iter()
|
|
|
|
.map(|seg| seg.identifier.name)
|
|
|
|
.collect()
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ViewPathGlob(ref module_ident_path) |
|
|
|
|
ViewPathList(ref module_ident_path, _) => {
|
|
|
|
module_ident_path.segments
|
2015-10-26 14:31:11 -05:00
|
|
|
.iter()
|
|
|
|
.map(|seg| seg.identifier.name)
|
|
|
|
.collect()
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Build up the import directives.
|
|
|
|
let shadowable = item.attrs.iter().any(|attr| {
|
2015-07-28 11:07:20 -05:00
|
|
|
attr.name() == special_idents::prelude_import.name.as_str()
|
2014-12-23 13:34:36 -06:00
|
|
|
});
|
|
|
|
let shadowable = if shadowable {
|
|
|
|
Shadowable::Always
|
|
|
|
} else {
|
|
|
|
Shadowable::Never
|
|
|
|
};
|
|
|
|
|
|
|
|
match view_path.node {
|
|
|
|
ViewPathSimple(binding, ref full_path) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
let source_name = full_path.segments.last().unwrap().identifier.name;
|
2015-07-28 11:07:20 -05:00
|
|
|
if source_name.as_str() == "mod" || source_name.as_str() == "self" {
|
2015-07-14 12:42:38 -05:00
|
|
|
resolve_error(self,
|
2015-07-28 11:07:20 -05:00
|
|
|
view_path.span,
|
|
|
|
ResolutionError::SelfImportsOnlyAllowedWithin);
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
|
2016-02-13 15:49:16 -06:00
|
|
|
let subclass = ImportDirectiveSubclass::single(binding, source_name);
|
2016-01-11 15:19:29 -06:00
|
|
|
self.build_import_directive(parent,
|
2014-12-23 13:34:36 -06:00
|
|
|
module_path,
|
|
|
|
subclass,
|
|
|
|
view_path.span,
|
|
|
|
item.id,
|
|
|
|
is_public,
|
|
|
|
shadowable);
|
|
|
|
}
|
|
|
|
ViewPathList(_, ref source_items) => {
|
|
|
|
// Make sure there's at most one `mod` import in the list.
|
2015-10-26 14:31:11 -05:00
|
|
|
let mod_spans = source_items.iter()
|
|
|
|
.filter_map(|item| {
|
|
|
|
match item.node {
|
|
|
|
PathListMod { .. } => Some(item.span),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect::<Vec<Span>>();
|
2014-12-23 13:34:36 -06:00
|
|
|
if mod_spans.len() > 1 {
|
2015-12-20 15:00:43 -06:00
|
|
|
let mut e = resolve_struct_error(self,
|
2015-10-26 14:31:11 -05:00
|
|
|
mod_spans[0],
|
|
|
|
ResolutionError::SelfImportCanOnlyAppearOnceInTheList);
|
2014-12-23 13:34:36 -06:00
|
|
|
for other_span in mod_spans.iter().skip(1) {
|
2015-12-23 00:27:20 -06:00
|
|
|
e.span_note(*other_span, "another `self` import appears here");
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
2015-12-23 00:27:20 -06:00
|
|
|
e.emit();
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
|
2015-01-31 11:20:46 -06:00
|
|
|
for source_item in source_items {
|
2015-08-01 00:20:25 -05:00
|
|
|
let (module_path, name, rename) = match source_item.node {
|
|
|
|
PathListIdent { name, rename, .. } =>
|
2015-09-20 06:51:40 -05:00
|
|
|
(module_path.clone(), name, rename.unwrap_or(name)),
|
2015-08-01 00:20:25 -05:00
|
|
|
PathListMod { rename, .. } => {
|
2014-12-23 13:34:36 -06:00
|
|
|
let name = match module_path.last() {
|
|
|
|
Some(name) => *name,
|
|
|
|
None => {
|
2015-07-14 12:42:38 -05:00
|
|
|
resolve_error(
|
2015-07-14 09:32:43 -05:00
|
|
|
self,
|
|
|
|
source_item.span,
|
2015-07-14 12:42:38 -05:00
|
|
|
ResolutionError::
|
2015-07-14 09:32:43 -05:00
|
|
|
SelfImportOnlyInImportListWithNonEmptyPrefix
|
2015-07-14 08:37:52 -05:00
|
|
|
);
|
2014-12-23 13:34:36 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
2015-07-11 06:34:57 -05:00
|
|
|
let module_path = module_path.split_last().unwrap().1;
|
2015-09-20 06:51:40 -05:00
|
|
|
let rename = rename.unwrap_or(name);
|
2015-08-01 00:20:25 -05:00
|
|
|
(module_path.to_vec(), name, rename)
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
};
|
2016-02-13 15:49:16 -06:00
|
|
|
let subclass = ImportDirectiveSubclass::single(rename, name);
|
2016-01-11 15:19:29 -06:00
|
|
|
self.build_import_directive(parent,
|
2015-10-26 14:31:11 -05:00
|
|
|
module_path,
|
2016-02-13 15:49:16 -06:00
|
|
|
subclass,
|
2015-10-26 14:31:11 -05:00
|
|
|
source_item.span,
|
|
|
|
source_item.node.id(),
|
|
|
|
is_public,
|
|
|
|
shadowable);
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ViewPathGlob(_) => {
|
2016-01-11 15:19:29 -06:00
|
|
|
self.build_import_directive(parent,
|
2014-12-23 13:34:36 -06:00
|
|
|
module_path,
|
|
|
|
GlobImport,
|
|
|
|
view_path.span,
|
|
|
|
item.id,
|
|
|
|
is_public,
|
|
|
|
shadowable);
|
|
|
|
}
|
|
|
|
}
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ItemExternCrate(_) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
// n.b. we don't need to look at the path option here, because cstore already
|
|
|
|
// did
|
2015-11-21 13:39:05 -06:00
|
|
|
if let Some(crate_id) = self.session.cstore.extern_mod_stmt_cnum(item.id) {
|
2015-10-26 14:31:11 -05:00
|
|
|
let def_id = DefId {
|
|
|
|
krate: crate_id,
|
|
|
|
index: CRATE_DEF_INDEX,
|
|
|
|
};
|
2016-01-11 15:19:29 -06:00
|
|
|
let parent_link = ModuleParentLink(parent, name);
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::Mod(def_id);
|
2016-02-24 23:23:50 -06:00
|
|
|
let module = self.new_extern_crate_module(parent_link, def, is_public, item.id);
|
|
|
|
self.define(parent, name, TypeNS, (module, sp));
|
2016-01-29 16:21:36 -06:00
|
|
|
|
2016-02-24 23:23:50 -06:00
|
|
|
self.build_reduced_graph_for_external_crate(module);
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-23 13:34:36 -06:00
|
|
|
}
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
ItemMod(..) => {
|
2016-01-11 15:19:29 -06:00
|
|
|
let parent_link = ModuleParentLink(parent, name);
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::Mod(self.ast_map.local_def_id(item.id));
|
2016-01-11 15:19:29 -06:00
|
|
|
let module = self.new_module(parent_link, Some(def), false, is_public);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, TypeNS, (module, sp));
|
2016-02-13 17:39:51 -06:00
|
|
|
parent.module_children.borrow_mut().insert(item.id, module);
|
2015-11-17 19:22:32 -06:00
|
|
|
module
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
ItemForeignMod(..) => parent,
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
// These items live in the value namespace.
|
|
|
|
ItemStatic(_, m, _) => {
|
2015-07-31 02:04:06 -05:00
|
|
|
let mutbl = m == hir::MutMutable;
|
2016-01-13 19:42:45 -06:00
|
|
|
let def = Def::Static(self.ast_map.local_def_id(item.id), mutbl);
|
|
|
|
self.define(parent, name, ValueNS, (def, sp, modifiers));
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
ItemConst(_, _) => {
|
2016-01-13 19:42:45 -06:00
|
|
|
let def = Def::Const(self.ast_map.local_def_id(item.id));
|
|
|
|
self.define(parent, name, ValueNS, (def, sp, modifiers));
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2015-02-25 14:05:07 -06:00
|
|
|
ItemFn(_, _, _, _, _, _) => {
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::Fn(self.ast_map.local_def_id(item.id));
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, ValueNS, (def, sp, modifiers));
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// These items live in the type namespace.
|
|
|
|
ItemTy(..) => {
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::TyAlias(self.ast_map.local_def_id(item.id));
|
2016-03-08 15:50:01 -06:00
|
|
|
self.define(parent, name, TypeNS, (def, sp, modifiers));
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ItemEnum(ref enum_definition, _) => {
|
2016-01-11 15:19:29 -06:00
|
|
|
let parent_link = ModuleParentLink(parent, name);
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::Enum(self.ast_map.local_def_id(item.id));
|
2016-01-11 15:19:29 -06:00
|
|
|
let module = self.new_module(parent_link, Some(def), false, is_public);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, TypeNS, (module, sp));
|
2014-12-30 12:52:51 -06:00
|
|
|
|
2015-11-23 18:36:12 -06:00
|
|
|
let variant_modifiers = if is_public {
|
|
|
|
DefModifiers::empty()
|
|
|
|
} else {
|
|
|
|
DefModifiers::PRIVATE_VARIANT
|
|
|
|
};
|
2015-01-31 11:20:46 -06:00
|
|
|
for variant in &(*enum_definition).variants {
|
2015-09-02 15:11:32 -05:00
|
|
|
let item_def_id = self.ast_map.local_def_id(item.id);
|
2015-11-23 18:36:12 -06:00
|
|
|
self.build_reduced_graph_for_variant(variant, item_def_id,
|
2016-01-29 17:34:58 -06:00
|
|
|
module, variant_modifiers);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// These items live in both the type and value namespaces.
|
|
|
|
ItemStruct(ref struct_def, _) => {
|
|
|
|
// Define a name in the type namespace.
|
2016-01-13 19:42:45 -06:00
|
|
|
let def = Def::Struct(self.ast_map.local_def_id(item.id));
|
|
|
|
self.define(parent, name, TypeNS, (def, sp, modifiers));
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
// If this is a newtype or unit-like struct, define a name
|
|
|
|
// in the value namespace as well
|
2016-01-27 21:03:40 -06:00
|
|
|
if !struct_def.is_struct() {
|
|
|
|
let def = Def::Struct(self.ast_map.local_def_id(struct_def.id()));
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, ValueNS, (def, sp, modifiers));
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Record the def ID and fields of this struct.
|
2016-02-26 18:05:14 -06:00
|
|
|
let field_names = struct_def.fields()
|
|
|
|
.iter()
|
2016-02-27 02:34:29 -06:00
|
|
|
.map(|f| f.name)
|
2016-02-26 18:05:14 -06:00
|
|
|
.collect();
|
2015-09-02 15:11:32 -05:00
|
|
|
let item_def_id = self.ast_map.local_def_id(item.id);
|
2016-02-26 18:05:14 -06:00
|
|
|
self.structs.insert(item_def_id, field_names);
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2015-02-07 07:24:34 -06:00
|
|
|
ItemDefaultImpl(_, _) |
|
2016-01-11 15:19:29 -06:00
|
|
|
ItemImpl(..) => parent,
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
ItemTrait(_, _, _, ref items) => {
|
2015-11-16 01:59:50 -06:00
|
|
|
let def_id = self.ast_map.local_def_id(item.id);
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
// Add all the items within to a new module.
|
2016-01-11 15:19:29 -06:00
|
|
|
let parent_link = ModuleParentLink(parent, name);
|
2016-01-20 13:31:10 -06:00
|
|
|
let def = Def::Trait(def_id);
|
2016-01-11 15:19:29 -06:00
|
|
|
let module_parent = self.new_module(parent_link, Some(def), false, is_public);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, TypeNS, (module_parent, sp));
|
2014-12-30 12:16:42 -06:00
|
|
|
|
|
|
|
// Add the names of all the items to the trait info.
|
2016-01-13 19:42:45 -06:00
|
|
|
for item in items {
|
|
|
|
let item_def_id = self.ast_map.local_def_id(item.id);
|
|
|
|
let (def, ns) = match item.node {
|
|
|
|
hir::ConstTraitItem(..) => (Def::AssociatedConst(item_def_id), ValueNS),
|
|
|
|
hir::MethodTraitItem(..) => (Def::Method(item_def_id), ValueNS),
|
|
|
|
hir::TypeTraitItem(..) => (Def::AssociatedTy(def_id, item_def_id), TypeNS),
|
|
|
|
};
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2016-01-13 19:42:45 -06:00
|
|
|
let modifiers = DefModifiers::PUBLIC; // NB: not DefModifiers::IMPORTABLE
|
2016-01-29 17:34:58 -06:00
|
|
|
self.define(module_parent, item.name, ns, (def, item.span, modifiers));
|
2016-01-13 19:42:45 -06:00
|
|
|
|
|
|
|
self.trait_item_map.insert((item.name, def_id), item_def_id);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Constructs the reduced graph for one variant. Variants exist in the
|
|
|
|
// type and value namespaces.
|
|
|
|
fn build_reduced_graph_for_variant(&mut self,
|
|
|
|
variant: &Variant,
|
|
|
|
item_id: DefId,
|
2016-01-11 15:19:29 -06:00
|
|
|
parent: Module<'b>,
|
2015-11-23 18:36:12 -06:00
|
|
|
variant_modifiers: DefModifiers) {
|
2015-09-20 08:47:24 -05:00
|
|
|
let name = variant.node.name;
|
2016-01-17 13:57:54 -06:00
|
|
|
if variant.node.data.is_struct() {
|
2015-10-08 15:45:46 -05:00
|
|
|
// Not adding fields for variants as they are not accessed with a self receiver
|
2015-10-09 19:28:40 -05:00
|
|
|
let variant_def_id = self.ast_map.local_def_id(variant.node.data.id());
|
2015-10-08 15:45:46 -05:00
|
|
|
self.structs.insert(variant_def_id, Vec::new());
|
2016-01-17 13:57:54 -06:00
|
|
|
}
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2016-01-21 14:22:01 -06:00
|
|
|
// Variants are always treated as importable to allow them to be glob used.
|
|
|
|
// All variants are defined in both type and value namespaces as future-proofing.
|
2016-01-13 19:42:45 -06:00
|
|
|
let modifiers = DefModifiers::PUBLIC | DefModifiers::IMPORTABLE | variant_modifiers;
|
|
|
|
let def = Def::Variant(item_id, self.ast_map.local_def_id(variant.node.data.id()));
|
|
|
|
|
|
|
|
self.define(parent, name, ValueNS, (def, variant.span, modifiers));
|
|
|
|
self.define(parent, name, TypeNS, (def, variant.span, modifiers));
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Constructs the reduced graph for one foreign item.
|
2015-02-05 01:19:07 -06:00
|
|
|
fn build_reduced_graph_for_foreign_item(&mut self,
|
|
|
|
foreign_item: &ForeignItem,
|
2016-01-11 15:19:29 -06:00
|
|
|
parent: Module<'b>) {
|
2015-09-19 20:50:30 -05:00
|
|
|
let name = foreign_item.name;
|
2015-07-31 02:04:06 -05:00
|
|
|
let is_public = foreign_item.vis == hir::Public;
|
2015-04-28 18:36:22 -05:00
|
|
|
let modifiers = if is_public {
|
|
|
|
DefModifiers::PUBLIC
|
|
|
|
} else {
|
|
|
|
DefModifiers::empty()
|
|
|
|
} | DefModifiers::IMPORTABLE;
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2015-02-05 01:19:07 -06:00
|
|
|
let def = match foreign_item.node {
|
|
|
|
ForeignItemFn(..) => {
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Fn(self.ast_map.local_def_id(foreign_item.id))
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
ForeignItemStatic(_, m) => {
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Static(self.ast_map.local_def_id(foreign_item.id), m)
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2015-02-05 01:19:07 -06:00
|
|
|
};
|
2016-01-13 19:42:45 -06:00
|
|
|
self.define(parent, name, ValueNS, (def, foreign_item.span, modifiers));
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
fn build_reduced_graph_for_block(&mut self, block: &Block, parent: Module<'b>) -> Module<'b> {
|
2014-12-30 12:16:42 -06:00
|
|
|
if self.block_needs_anonymous_module(block) {
|
|
|
|
let block_id = block.id;
|
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for block) creating a new anonymous module for block \
|
|
|
|
{}",
|
2014-12-30 12:16:42 -06:00
|
|
|
block_id);
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
let parent_link = BlockParentLink(parent, block_id);
|
|
|
|
let new_module = self.new_module(parent_link, None, false, false);
|
2016-02-13 17:39:51 -06:00
|
|
|
parent.module_children.borrow_mut().insert(block_id, new_module);
|
2014-12-30 12:30:42 -06:00
|
|
|
new_module
|
2014-12-30 12:16:42 -06:00
|
|
|
} else {
|
2016-01-11 15:19:29 -06:00
|
|
|
parent
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn handle_external_def(&mut self,
|
|
|
|
def: Def,
|
|
|
|
vis: Visibility,
|
|
|
|
final_ident: &str,
|
|
|
|
name: Name,
|
2016-01-11 15:19:29 -06:00
|
|
|
new_parent: Module<'b>) {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building external def {}, priv {:?}",
|
|
|
|
final_ident,
|
|
|
|
vis);
|
2016-02-24 22:40:46 -06:00
|
|
|
let is_public = vis == hir::Public || new_parent.is_trait();
|
2016-01-13 19:42:45 -06:00
|
|
|
|
|
|
|
let mut modifiers = DefModifiers::empty();
|
|
|
|
if is_public {
|
|
|
|
modifiers = modifiers | DefModifiers::PUBLIC;
|
|
|
|
}
|
|
|
|
if new_parent.is_normal() {
|
|
|
|
modifiers = modifiers | DefModifiers::IMPORTABLE;
|
|
|
|
}
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
match def {
|
2016-03-08 15:50:01 -06:00
|
|
|
Def::Mod(_) | Def::ForeignMod(_) | Def::Enum(..) => {
|
2016-01-13 19:42:45 -06:00
|
|
|
debug!("(building reduced graph for external crate) building module {} {}",
|
|
|
|
final_ident,
|
|
|
|
is_public);
|
|
|
|
let parent_link = ModuleParentLink(new_parent, name);
|
|
|
|
let module = self.new_module(parent_link, Some(def), true, is_public);
|
|
|
|
self.try_define(new_parent, name, TypeNS, (module, DUMMY_SP));
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Variant(_, variant_id) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building variant {}",
|
|
|
|
final_ident);
|
2016-01-21 14:22:01 -06:00
|
|
|
// Variants are always treated as importable to allow them to be glob used.
|
|
|
|
// All variants are defined in both type and value namespaces as future-proofing.
|
2015-10-26 14:31:11 -05:00
|
|
|
let modifiers = DefModifiers::PUBLIC | DefModifiers::IMPORTABLE;
|
2016-01-13 19:42:45 -06:00
|
|
|
self.try_define(new_parent, name, TypeNS, (def, DUMMY_SP, modifiers));
|
|
|
|
self.try_define(new_parent, name, ValueNS, (def, DUMMY_SP, modifiers));
|
2016-01-17 13:57:54 -06:00
|
|
|
if self.session.cstore.variant_kind(variant_id) == Some(VariantKind::Struct) {
|
2015-10-26 14:31:11 -05:00
|
|
|
// Not adding fields for variants as they are not accessed with a self receiver
|
|
|
|
self.structs.insert(variant_id, Vec::new());
|
|
|
|
}
|
|
|
|
}
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Fn(..) |
|
|
|
|
Def::Static(..) |
|
|
|
|
Def::Const(..) |
|
|
|
|
Def::AssociatedConst(..) |
|
|
|
|
Def::Method(..) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building value (fn/static) {}",
|
|
|
|
final_ident);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.try_define(new_parent, name, ValueNS, (def, DUMMY_SP, modifiers));
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Trait(def_id) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building type {}",
|
|
|
|
final_ident);
|
|
|
|
|
|
|
|
// If this is a trait, add all the trait item names to the trait
|
|
|
|
// info.
|
|
|
|
|
2015-11-20 09:46:39 -06:00
|
|
|
let trait_item_def_ids = self.session.cstore.trait_item_def_ids(def_id);
|
2015-10-26 14:31:11 -05:00
|
|
|
for trait_item_def in &trait_item_def_ids {
|
2015-11-20 09:46:39 -06:00
|
|
|
let trait_item_name =
|
|
|
|
self.session.cstore.item_name(trait_item_def.def_id());
|
2015-10-26 14:31:11 -05:00
|
|
|
|
|
|
|
debug!("(building reduced graph for external crate) ... adding trait item \
|
|
|
|
'{}'",
|
|
|
|
trait_item_name);
|
|
|
|
|
|
|
|
self.trait_item_map.insert((trait_item_name, def_id), trait_item_def.def_id());
|
|
|
|
}
|
2016-01-27 21:03:40 -06:00
|
|
|
|
|
|
|
let parent_link = ModuleParentLink(new_parent, name);
|
|
|
|
let module = self.new_module(parent_link, Some(def), true, is_public);
|
|
|
|
self.try_define(new_parent, name, TypeNS, (module, DUMMY_SP));
|
2015-10-26 14:31:11 -05:00
|
|
|
}
|
2016-03-08 15:50:01 -06:00
|
|
|
Def::TyAlias(..) | Def::AssociatedTy(..) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building type {}",
|
|
|
|
final_ident);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.try_define(new_parent, name, TypeNS, (def, DUMMY_SP, modifiers));
|
2015-10-26 14:31:11 -05:00
|
|
|
}
|
2016-01-27 21:03:40 -06:00
|
|
|
Def::Struct(def_id)
|
|
|
|
if self.session.cstore.tuple_struct_definition_if_ctor(def_id).is_none() => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) building type and value for \
|
|
|
|
{}",
|
|
|
|
final_ident);
|
2016-01-13 19:42:45 -06:00
|
|
|
self.try_define(new_parent, name, TypeNS, (def, DUMMY_SP, modifiers));
|
2016-01-17 13:57:54 -06:00
|
|
|
if let Some(ctor_def_id) = self.session.cstore.struct_ctor_def_id(def_id) {
|
2016-01-13 19:42:45 -06:00
|
|
|
let def = Def::Struct(ctor_def_id);
|
|
|
|
self.try_define(new_parent, name, ValueNS, (def, DUMMY_SP, modifiers));
|
2015-10-26 14:31:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Record the def ID and fields of this struct.
|
2016-01-17 13:57:54 -06:00
|
|
|
let fields = self.session.cstore.struct_field_names(def_id);
|
2015-10-26 14:31:11 -05:00
|
|
|
self.structs.insert(def_id, fields);
|
|
|
|
}
|
2016-01-27 21:03:40 -06:00
|
|
|
Def::Struct(..) => {}
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::Local(..) |
|
|
|
|
Def::PrimTy(..) |
|
|
|
|
Def::TyParam(..) |
|
|
|
|
Def::Upvar(..) |
|
|
|
|
Def::Label(..) |
|
|
|
|
Def::SelfTy(..) |
|
|
|
|
Def::Err => {
|
2015-10-26 14:31:11 -05:00
|
|
|
panic!("didn't expect `{:?}`", def);
|
|
|
|
}
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds the reduced graph for a single item in an external crate.
|
|
|
|
fn build_reduced_graph_for_external_crate_def(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
root: Module<'b>,
|
2015-11-20 09:46:39 -06:00
|
|
|
xcdef: ChildItem) {
|
|
|
|
match xcdef.def {
|
2014-12-30 12:16:42 -06:00
|
|
|
DlDef(def) => {
|
|
|
|
// Add the new child item, if necessary.
|
|
|
|
match def {
|
2016-01-20 13:31:10 -06:00
|
|
|
Def::ForeignMod(def_id) => {
|
2014-12-30 12:16:42 -06:00
|
|
|
// Foreign modules have no names. Recur and populate
|
|
|
|
// eagerly.
|
2015-11-20 09:46:39 -06:00
|
|
|
for child in self.session.cstore.item_children(def_id) {
|
|
|
|
self.build_reduced_graph_for_external_crate_def(root, child)
|
|
|
|
}
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
self.handle_external_def(def,
|
2015-11-20 09:46:39 -06:00
|
|
|
xcdef.vis,
|
|
|
|
&xcdef.name.as_str(),
|
|
|
|
xcdef.name,
|
2014-12-30 12:30:42 -06:00
|
|
|
root);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-02-20 00:17:05 -06:00
|
|
|
DlImpl(_) => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) ignoring impl");
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
DlField => {
|
2015-10-26 14:31:11 -05:00
|
|
|
debug!("(building reduced graph for external crate) ignoring field");
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds the reduced graph rooted at the given external module.
|
2016-01-11 15:19:29 -06:00
|
|
|
fn populate_external_module(&mut self, module: Module<'b>) {
|
2014-12-30 12:16:42 -06:00
|
|
|
debug!("(populating external module) attempting to populate {}",
|
2016-01-11 15:19:29 -06:00
|
|
|
module_to_string(module));
|
2014-12-30 12:16:42 -06:00
|
|
|
|
2015-11-16 01:59:50 -06:00
|
|
|
let def_id = match module.def_id() {
|
2014-12-30 12:16:42 -06:00
|
|
|
None => {
|
|
|
|
debug!("(populating external module) ... no def ID!");
|
2015-10-26 14:31:11 -05:00
|
|
|
return;
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
Some(def_id) => def_id,
|
|
|
|
};
|
|
|
|
|
2015-11-20 09:46:39 -06:00
|
|
|
for child in self.session.cstore.item_children(def_id) {
|
|
|
|
debug!("(populating external module) ... found ident: {}",
|
|
|
|
child.name);
|
|
|
|
self.build_reduced_graph_for_external_crate_def(module, child);
|
|
|
|
}
|
2014-12-30 12:16:42 -06:00
|
|
|
module.populated.set(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Ensures that the reduced graph rooted at the given external module
|
|
|
|
/// is built, building it if it is not.
|
2016-01-11 15:19:29 -06:00
|
|
|
fn populate_module_if_necessary(&mut self, module: Module<'b>) {
|
2014-12-30 12:16:42 -06:00
|
|
|
if !module.populated.get() {
|
2014-12-30 12:52:51 -06:00
|
|
|
self.populate_external_module(module)
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
assert!(module.populated.get())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds the reduced graph rooted at the 'use' directive for an external
|
|
|
|
/// crate.
|
2016-01-11 15:19:29 -06:00
|
|
|
fn build_reduced_graph_for_external_crate(&mut self, root: Module<'b>) {
|
2015-11-20 09:46:39 -06:00
|
|
|
let root_cnum = root.def_id().unwrap().krate;
|
|
|
|
for child in self.session.cstore.crate_top_level_items(root_cnum) {
|
|
|
|
self.build_reduced_graph_for_external_crate_def(root, child);
|
|
|
|
}
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates and adds an import directive to the given module.
|
|
|
|
fn build_import_directive(&mut self,
|
2016-01-11 15:19:29 -06:00
|
|
|
module_: Module<'b>,
|
2014-12-30 12:16:42 -06:00
|
|
|
module_path: Vec<Name>,
|
|
|
|
subclass: ImportDirectiveSubclass,
|
|
|
|
span: Span,
|
|
|
|
id: NodeId,
|
|
|
|
is_public: bool,
|
|
|
|
shadowable: Shadowable) {
|
|
|
|
// Bump the reference count on the name. Or, if this is a glob, set
|
|
|
|
// the appropriate flag.
|
|
|
|
|
|
|
|
match subclass {
|
2016-02-13 15:49:16 -06:00
|
|
|
SingleImport { target, .. } => {
|
2016-03-07 03:59:08 -06:00
|
|
|
module_.increment_outstanding_references_for(target, ValueNS, is_public);
|
|
|
|
module_.increment_outstanding_references_for(target, TypeNS, is_public);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
GlobImport => {
|
|
|
|
// Set the glob flag. This tells us that we don't know the
|
|
|
|
// module's exports ahead of time.
|
2016-02-16 05:48:38 -06:00
|
|
|
module_.inc_glob_count(is_public)
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
2016-02-13 15:49:16 -06:00
|
|
|
|
2016-02-14 20:22:59 -06:00
|
|
|
let directive =
|
|
|
|
ImportDirective::new(module_path, subclass, span, id, is_public, shadowable);
|
2016-02-14 23:18:55 -06:00
|
|
|
module_.add_import_directive(directive);
|
2016-02-13 15:49:16 -06:00
|
|
|
self.unresolved_imports += 1;
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-26 14:31:11 -05:00
|
|
|
struct BuildReducedGraphVisitor<'a, 'b: 'a, 'tcx: 'b> {
|
2014-12-30 12:16:42 -06:00
|
|
|
builder: GraphBuilder<'a, 'b, 'tcx>,
|
2016-01-11 15:19:29 -06:00
|
|
|
parent: Module<'b>,
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b, 'v, 'tcx> Visitor<'v> for BuildReducedGraphVisitor<'a, 'b, 'tcx> {
|
2015-11-17 17:56:13 -06:00
|
|
|
fn visit_nested_item(&mut self, item: hir::ItemId) {
|
|
|
|
self.visit_item(self.builder.resolver.ast_map.expect_item(item.id))
|
|
|
|
}
|
|
|
|
|
2014-12-30 12:16:42 -06:00
|
|
|
fn visit_item(&mut self, item: &Item) {
|
2014-12-30 12:52:51 -06:00
|
|
|
let p = self.builder.build_reduced_graph_for_item(item, &self.parent);
|
2014-12-30 12:16:42 -06:00
|
|
|
let old_parent = replace(&mut self.parent, p);
|
2015-11-17 17:56:13 -06:00
|
|
|
intravisit::walk_item(self, item);
|
2014-12-30 12:16:42 -06:00
|
|
|
self.parent = old_parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_foreign_item(&mut self, foreign_item: &ForeignItem) {
|
2015-02-05 01:19:07 -06:00
|
|
|
self.builder.build_reduced_graph_for_foreign_item(foreign_item, &self.parent);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_block(&mut self, block: &Block) {
|
2014-12-30 12:52:51 -06:00
|
|
|
let np = self.builder.build_reduced_graph_for_block(block, &self.parent);
|
2014-12-30 12:16:42 -06:00
|
|
|
let old_parent = replace(&mut self.parent, np);
|
2015-11-17 17:56:13 -06:00
|
|
|
intravisit::walk_block(self, block);
|
2014-12-30 12:16:42 -06:00
|
|
|
self.parent = old_parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-31 02:04:06 -05:00
|
|
|
pub fn build_reduced_graph(resolver: &mut Resolver, krate: &hir::Crate) {
|
2015-10-26 14:31:11 -05:00
|
|
|
GraphBuilder { resolver: resolver }.build_reduced_graph(krate);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|
|
|
|
|
2016-01-11 15:19:29 -06:00
|
|
|
pub fn populate_module_if_necessary<'a, 'tcx>(resolver: &mut Resolver<'a, 'tcx>,
|
|
|
|
module: Module<'a>) {
|
2015-10-26 14:31:11 -05:00
|
|
|
GraphBuilder { resolver: resolver }.populate_module_if_necessary(module);
|
2014-12-30 12:16:42 -06:00
|
|
|
}
|