2016-09-07 18:21:59 -05:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2016-09-14 16:03:09 -05:00
|
|
|
use {Module, Resolver};
|
|
|
|
use build_reduced_graph::BuildReducedGraphVisitor;
|
2016-09-14 04:55:20 -05:00
|
|
|
use rustc::hir::def_id::{CRATE_DEF_INDEX, DefIndex};
|
2016-09-23 16:13:59 -05:00
|
|
|
use rustc::hir::map::{self, DefCollector};
|
2016-10-06 03:04:30 -05:00
|
|
|
use rustc::util::nodemap::FnvHashMap;
|
2016-09-16 03:50:34 -05:00
|
|
|
use std::cell::Cell;
|
2016-09-07 18:21:59 -05:00
|
|
|
use std::rc::Rc;
|
2016-09-16 01:45:03 -05:00
|
|
|
use syntax::ast;
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::errors::DiagnosticBuilder;
|
2016-09-21 01:25:09 -05:00
|
|
|
use syntax::ext::base::{self, MultiModifier, MultiDecorator, MultiItemModifier};
|
2016-09-16 01:45:03 -05:00
|
|
|
use syntax::ext::base::{NormalTT, SyntaxExtension};
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::ext::expand::{Expansion, Invocation, InvocationKind};
|
2016-10-06 03:04:30 -05:00
|
|
|
use syntax::ext::hygiene::Mark;
|
2016-09-21 01:25:09 -05:00
|
|
|
use syntax::ext::tt::macro_rules;
|
2016-09-16 01:45:03 -05:00
|
|
|
use syntax::parse::token::intern;
|
2016-09-07 18:21:59 -05:00
|
|
|
use syntax::util::lev_distance::find_best_match_for_name;
|
2016-10-06 03:04:30 -05:00
|
|
|
use syntax_pos::Span;
|
2016-09-07 18:21:59 -05:00
|
|
|
|
2016-09-14 04:55:20 -05:00
|
|
|
#[derive(Clone)]
|
2016-10-03 18:48:19 -05:00
|
|
|
pub struct InvocationData<'a> {
|
2016-09-16 03:50:34 -05:00
|
|
|
pub module: Cell<Module<'a>>,
|
2016-09-14 04:55:20 -05:00
|
|
|
def_index: DefIndex,
|
2016-09-23 16:13:59 -05:00
|
|
|
// True if this expansion is in a `const_integer` position, for example `[u32; m!()]`.
|
|
|
|
// c.f. `DefCollector::visit_ast_const_integer`.
|
|
|
|
const_integer: bool,
|
2016-10-06 03:04:30 -05:00
|
|
|
// The scope in which the invocation path is resolved.
|
|
|
|
pub legacy_scope: Cell<LegacyScope<'a>>,
|
|
|
|
// The smallest scope that includes this invocation's expansion,
|
|
|
|
// or `Empty` if this invocation has not been expanded yet.
|
|
|
|
pub expansion: Cell<LegacyScope<'a>>,
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
|
|
|
|
2016-10-03 18:48:19 -05:00
|
|
|
impl<'a> InvocationData<'a> {
|
2016-09-14 16:03:09 -05:00
|
|
|
pub fn root(graph_root: Module<'a>) -> Self {
|
2016-10-03 18:48:19 -05:00
|
|
|
InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
module: Cell::new(graph_root),
|
2016-09-14 04:55:20 -05:00
|
|
|
def_index: CRATE_DEF_INDEX,
|
2016-09-23 16:13:59 -05:00
|
|
|
const_integer: false,
|
2016-10-06 03:04:30 -05:00
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
2016-10-06 03:04:30 -05:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub enum LegacyScope<'a> {
|
|
|
|
Empty,
|
|
|
|
Invocation(&'a InvocationData<'a>), // The scope of the invocation, not including its expansion
|
|
|
|
Expansion(&'a InvocationData<'a>), // The scope of the invocation, including its expansion
|
|
|
|
Binding(&'a LegacyBinding<'a>),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct LegacyBinding<'a> {
|
|
|
|
parent: LegacyScope<'a>,
|
|
|
|
kind: LegacyBindingKind,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub enum LegacyBindingKind {
|
|
|
|
MacroRules(ast::Name, Rc<SyntaxExtension>, Span),
|
|
|
|
MacroUse(LegacyImports),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type LegacyImports = FnvHashMap<ast::Name, (Rc<SyntaxExtension>, Span)>;
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
impl<'a> base::Resolver for Resolver<'a> {
|
2016-09-04 19:10:27 -05:00
|
|
|
fn next_node_id(&mut self) -> ast::NodeId {
|
|
|
|
self.session.next_node_id()
|
|
|
|
}
|
|
|
|
|
2016-09-23 02:23:01 -05:00
|
|
|
fn get_module_scope(&mut self, id: ast::NodeId) -> Mark {
|
|
|
|
let mark = Mark::fresh();
|
|
|
|
let module = self.module_map[&id];
|
2016-10-03 18:48:19 -05:00
|
|
|
self.invocations.insert(mark, self.arenas.alloc_invocation_data(InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
module: Cell::new(module),
|
2016-09-23 02:23:01 -05:00
|
|
|
def_index: module.def_id().unwrap().index,
|
2016-09-23 16:13:59 -05:00
|
|
|
const_integer: false,
|
2016-10-06 03:04:30 -05:00
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
2016-09-16 03:50:34 -05:00
|
|
|
}));
|
2016-09-23 02:23:01 -05:00
|
|
|
mark
|
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
fn visit_expansion(&mut self, mark: Mark, expansion: &Expansion) {
|
2016-10-06 03:04:30 -05:00
|
|
|
let invocation = self.invocations[&mark];
|
|
|
|
self.collect_def_ids(invocation, expansion);
|
|
|
|
|
|
|
|
self.current_module = invocation.module.get();
|
|
|
|
let mut visitor = BuildReducedGraphVisitor {
|
|
|
|
resolver: self,
|
|
|
|
legacy_scope: LegacyScope::Invocation(invocation),
|
|
|
|
legacy_imports: FnvHashMap(),
|
|
|
|
};
|
|
|
|
expansion.visit_with(&mut visitor);
|
|
|
|
invocation.expansion.set(visitor.legacy_scope);
|
|
|
|
|
|
|
|
if !visitor.legacy_imports.is_empty() {
|
|
|
|
invocation.legacy_scope.set({
|
|
|
|
LegacyScope::Binding(self.arenas.alloc_legacy_binding(LegacyBinding {
|
|
|
|
parent: invocation.legacy_scope.get(),
|
|
|
|
kind: LegacyBindingKind::MacroUse(visitor.legacy_imports),
|
|
|
|
}))
|
|
|
|
});
|
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
2016-09-21 01:25:09 -05:00
|
|
|
fn add_macro(&mut self, scope: Mark, mut def: ast::MacroDef) {
|
2016-09-25 18:38:22 -05:00
|
|
|
if &def.ident.name.as_str() == "macro_rules" {
|
|
|
|
self.session.span_err(def.span, "user-defined macros may not be named `macro_rules`");
|
|
|
|
}
|
2016-09-21 01:25:09 -05:00
|
|
|
if def.use_locally {
|
2016-10-03 18:48:19 -05:00
|
|
|
let invocation = self.invocations[&scope];
|
2016-10-06 03:04:30 -05:00
|
|
|
let ext = Rc::new(macro_rules::compile(&self.session.parse_sess, &def));
|
|
|
|
let binding = self.arenas.alloc_legacy_binding(LegacyBinding {
|
|
|
|
parent: invocation.legacy_scope.get(),
|
|
|
|
kind: LegacyBindingKind::MacroRules(def.ident.name, ext, def.span),
|
|
|
|
});
|
|
|
|
invocation.legacy_scope.set(LegacyScope::Binding(binding));
|
2016-10-01 20:41:19 -05:00
|
|
|
self.macro_names.insert(def.ident.name);
|
2016-09-21 01:25:09 -05:00
|
|
|
}
|
|
|
|
if def.export {
|
|
|
|
def.id = self.next_node_id();
|
|
|
|
self.exported_macros.push(def);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-02 00:49:56 -05:00
|
|
|
fn add_ext(&mut self, ident: ast::Ident, ext: Rc<SyntaxExtension>) {
|
2016-09-07 18:21:59 -05:00
|
|
|
if let NormalTT(..) = *ext {
|
|
|
|
self.macro_names.insert(ident.name);
|
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
self.builtin_macros.insert(ident.name, ext);
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn add_expansions_at_stmt(&mut self, id: ast::NodeId, macros: Vec<Mark>) {
|
|
|
|
self.macros_at_scope.insert(id, macros);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn find_attr_invoc(&mut self, attrs: &mut Vec<ast::Attribute>) -> Option<ast::Attribute> {
|
|
|
|
for i in 0..attrs.len() {
|
|
|
|
let name = intern(&attrs[i].name());
|
2016-10-06 03:04:30 -05:00
|
|
|
match self.builtin_macros.get(&name) {
|
|
|
|
Some(ext) => match **ext {
|
2016-09-06 00:57:58 -05:00
|
|
|
MultiModifier(..) | MultiDecorator(..) | SyntaxExtension::AttrProcMacro(..) => {
|
|
|
|
return Some(attrs.remove(i))
|
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
_ => {}
|
|
|
|
},
|
|
|
|
None => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-09-19 02:27:20 -05:00
|
|
|
fn resolve_invoc(&mut self, scope: Mark, invoc: &Invocation) -> Option<Rc<SyntaxExtension>> {
|
2016-09-07 18:21:59 -05:00
|
|
|
let (name, span) = match invoc.kind {
|
|
|
|
InvocationKind::Bang { ref mac, .. } => {
|
|
|
|
let path = &mac.node.path;
|
|
|
|
if path.segments.len() > 1 || path.global ||
|
|
|
|
!path.segments[0].parameters.is_empty() {
|
|
|
|
self.session.span_err(path.span,
|
|
|
|
"expected macro name without module separators");
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
(path.segments[0].identifier.name, path.span)
|
|
|
|
}
|
|
|
|
InvocationKind::Attr { ref attr, .. } => (intern(&*attr.name()), attr.span),
|
|
|
|
};
|
|
|
|
|
2016-10-06 03:04:30 -05:00
|
|
|
let scope = self.invocations[&scope].legacy_scope.get();
|
2016-10-01 20:41:19 -05:00
|
|
|
self.resolve_macro_name(scope, name, true).or_else(|| {
|
2016-09-25 22:17:05 -05:00
|
|
|
let mut err =
|
|
|
|
self.session.struct_span_err(span, &format!("macro undefined: '{}!'", name));
|
|
|
|
self.suggest_macro_name(&name.as_str(), &mut err);
|
|
|
|
err.emit();
|
|
|
|
None
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resolve_derive_mode(&mut self, ident: ast::Ident) -> Option<Rc<MultiItemModifier>> {
|
|
|
|
self.derive_modes.get(&ident.name).cloned()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Resolver<'a> {
|
2016-10-06 03:04:30 -05:00
|
|
|
fn resolve_macro_name(&mut self,
|
|
|
|
mut scope: LegacyScope<'a>,
|
|
|
|
name: ast::Name,
|
|
|
|
record_used: bool)
|
|
|
|
-> Option<Rc<SyntaxExtension>> {
|
|
|
|
let check_shadowing = |this: &mut Self, relative_depth, scope, span| {
|
|
|
|
if record_used && relative_depth > 0 &&
|
|
|
|
this.resolve_macro_name(scope, name, false).is_some() &&
|
|
|
|
this.macro_shadowing_errors.insert(span) {
|
|
|
|
let msg = format!("`{}` is already in scope", name);
|
|
|
|
this.session.struct_span_err(span, &msg)
|
|
|
|
.note("macro-expanded `macro_rules!`s and `#[macro_use]`s \
|
|
|
|
may not shadow existing macros (see RFC 1560)")
|
|
|
|
.emit();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut relative_depth: u32 = 0;
|
2016-09-07 18:21:59 -05:00
|
|
|
loop {
|
2016-10-06 03:04:30 -05:00
|
|
|
scope = match scope {
|
|
|
|
LegacyScope::Empty => break,
|
|
|
|
LegacyScope::Expansion(invocation) => {
|
|
|
|
if let LegacyScope::Empty = invocation.expansion.get() {
|
|
|
|
invocation.legacy_scope.get()
|
|
|
|
} else {
|
|
|
|
relative_depth += 1;
|
|
|
|
invocation.expansion.get()
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
}
|
|
|
|
LegacyScope::Invocation(invocation) => {
|
|
|
|
let new_relative_depth = relative_depth.saturating_sub(1);
|
|
|
|
let mut scope = invocation.legacy_scope.get();
|
|
|
|
if let LegacyScope::Binding(binding) = scope {
|
|
|
|
match binding.kind {
|
|
|
|
LegacyBindingKind::MacroUse(ref imports) => {
|
|
|
|
if let Some(&(ref ext, span)) = imports.get(&name) {
|
|
|
|
check_shadowing(self, relative_depth, binding.parent, span);
|
|
|
|
return Some(ext.clone());
|
|
|
|
}
|
|
|
|
},
|
|
|
|
LegacyBindingKind::MacroRules(name_, ref ext, span) => {
|
|
|
|
if name_ == name {
|
|
|
|
check_shadowing(self, new_relative_depth, binding.parent, span);
|
|
|
|
return Some(ext.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scope = binding.parent
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
relative_depth = new_relative_depth;
|
|
|
|
scope
|
2016-10-01 20:41:19 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
2016-10-06 03:04:30 -05:00
|
|
|
|
|
|
|
self.builtin_macros.get(&name).cloned()
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|
2016-09-21 01:25:09 -05:00
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
fn suggest_macro_name(&mut self, name: &str, err: &mut DiagnosticBuilder<'a>) {
|
|
|
|
if let Some(suggestion) = find_best_match_for_name(self.macro_names.iter(), name, None) {
|
|
|
|
if suggestion != name {
|
|
|
|
err.help(&format!("did you mean `{}!`?", suggestion));
|
|
|
|
} else {
|
|
|
|
err.help(&format!("have you added the `#[macro_use]` on the module/import?"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-09-21 01:25:09 -05:00
|
|
|
|
2016-10-06 03:04:30 -05:00
|
|
|
fn collect_def_ids(&mut self, invocation: &'a InvocationData<'a>, expansion: &Expansion) {
|
2016-10-03 18:48:19 -05:00
|
|
|
let Resolver { ref mut invocations, arenas, graph_root, .. } = *self;
|
2016-10-06 03:04:30 -05:00
|
|
|
let InvocationData { def_index, const_integer, .. } = *invocation;
|
2016-09-16 03:50:34 -05:00
|
|
|
|
2016-09-23 16:13:59 -05:00
|
|
|
let visit_macro_invoc = &mut |invoc: map::MacroInvocationData| {
|
2016-10-03 18:48:19 -05:00
|
|
|
invocations.entry(invoc.mark).or_insert_with(|| {
|
|
|
|
arenas.alloc_invocation_data(InvocationData {
|
2016-09-16 03:50:34 -05:00
|
|
|
def_index: invoc.def_index,
|
|
|
|
const_integer: invoc.const_integer,
|
|
|
|
module: Cell::new(graph_root),
|
2016-10-06 03:04:30 -05:00
|
|
|
expansion: Cell::new(LegacyScope::Empty),
|
|
|
|
legacy_scope: Cell::new(LegacyScope::Empty),
|
2016-09-16 03:50:34 -05:00
|
|
|
})
|
2016-09-14 04:55:20 -05:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2016-09-16 01:45:03 -05:00
|
|
|
let mut def_collector = DefCollector::new(&mut self.definitions);
|
2016-09-14 04:55:20 -05:00
|
|
|
def_collector.visit_macro_invoc = Some(visit_macro_invoc);
|
2016-09-28 21:23:19 -05:00
|
|
|
def_collector.with_parent(def_index, |def_collector| {
|
|
|
|
if const_integer {
|
|
|
|
if let Expansion::Expr(ref expr) = *expansion {
|
|
|
|
def_collector.visit_ast_const_integer(expr);
|
|
|
|
}
|
|
|
|
}
|
2016-09-23 16:13:59 -05:00
|
|
|
expansion.visit_with(def_collector)
|
|
|
|
});
|
2016-09-14 04:55:20 -05:00
|
|
|
}
|
2016-09-07 18:21:59 -05:00
|
|
|
}
|