2014-02-12 06:43:23 +00:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-04 00:48:01 +00:00
|
|
|
// 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-08-04 00:55:05 +00:00
|
|
|
use ast::{Block, Crate, Ident, Mac_, PatKind};
|
2016-06-22 08:03:42 +00:00
|
|
|
use ast::{MacStmtStyle, Stmt, StmtKind, ItemKind};
|
2012-12-23 22:41:37 +00:00
|
|
|
use ast;
|
2016-07-16 19:11:28 +00:00
|
|
|
use ext::hygiene::Mark;
|
2016-06-22 08:03:42 +00:00
|
|
|
use attr::{self, HasAttrs};
|
|
|
|
use codemap::{dummy_spanned, ExpnInfo, NameAndSpan, MacroBang, MacroAttribute};
|
2016-06-21 22:08:13 +00:00
|
|
|
use syntax_pos::{self, Span, ExpnId};
|
2016-05-16 10:09:23 +00:00
|
|
|
use config::StripUnconfigured;
|
2012-09-04 18:37:29 +00:00
|
|
|
use ext::base::*;
|
2015-12-10 14:23:14 +00:00
|
|
|
use feature_gate::{self, Features};
|
2014-07-03 06:16:01 +00:00
|
|
|
use fold;
|
2012-12-23 22:41:37 +00:00
|
|
|
use fold::*;
|
2016-06-22 08:03:42 +00:00
|
|
|
use parse::token::{intern, keywords};
|
2014-09-13 16:06:01 +00:00
|
|
|
use ptr::P;
|
2016-06-20 15:49:33 +00:00
|
|
|
use tokenstream::TokenTree;
|
2014-09-13 16:06:01 +00:00
|
|
|
use util::small_vector::SmallVector;
|
2013-06-04 21:56:33 +00:00
|
|
|
use visit;
|
2013-06-08 16:21:11 +00:00
|
|
|
use visit::Visitor;
|
2014-09-07 21:57:26 +00:00
|
|
|
use std_inject;
|
2011-08-05 20:06:11 +00:00
|
|
|
|
2016-08-31 09:02:45 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
macro_rules! expansions {
|
|
|
|
($($kind:ident: $ty:ty, $kind_name:expr, .$make:ident,
|
|
|
|
$(.$fold:ident)* $(lift .$fold_elt:ident)*,
|
|
|
|
$(.$visit:ident)* $(lift .$visit_elt:ident)*;)*) => {
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
enum ExpansionKind { OptExpr, $( $kind, )* }
|
|
|
|
enum Expansion { OptExpr(Option<P<ast::Expr>>), $( $kind($ty), )* }
|
|
|
|
|
|
|
|
impl ExpansionKind {
|
|
|
|
fn name(self) -> &'static str {
|
|
|
|
match self {
|
|
|
|
ExpansionKind::OptExpr => "expression",
|
|
|
|
$( ExpansionKind::$kind => $kind_name, )*
|
|
|
|
}
|
|
|
|
}
|
2016-05-24 06:12:54 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fn make_from<'a>(self, result: Box<MacResult + 'a>) -> Option<Expansion> {
|
|
|
|
match self {
|
|
|
|
ExpansionKind::OptExpr => result.make_expr().map(Some).map(Expansion::OptExpr),
|
|
|
|
$( ExpansionKind::$kind => result.$make().map(Expansion::$kind), )*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-06-17 11:02:42 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
impl Expansion {
|
|
|
|
fn make_opt_expr(self) -> Option<P<ast::Expr>> {
|
|
|
|
match self {
|
|
|
|
Expansion::OptExpr(expr) => expr,
|
|
|
|
_ => panic!("Expansion::make_* called on the wrong kind of expansion"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$( fn $make(self) -> $ty {
|
|
|
|
match self {
|
|
|
|
Expansion::$kind(ast) => ast,
|
|
|
|
_ => panic!("Expansion::make_* called on the wrong kind of expansion"),
|
|
|
|
}
|
|
|
|
} )*
|
2016-05-19 09:45:37 +00:00
|
|
|
|
|
|
|
fn fold_with<F: Folder>(self, folder: &mut F) -> Self {
|
2016-08-27 05:27:59 +00:00
|
|
|
use self::Expansion::*;
|
|
|
|
match self {
|
|
|
|
OptExpr(expr) => OptExpr(expr.and_then(|expr| folder.fold_opt_expr(expr))),
|
|
|
|
$($( $kind(ast) => $kind(folder.$fold(ast)), )*)*
|
|
|
|
$($( $kind(ast) => {
|
|
|
|
$kind(ast.into_iter().flat_map(|ast| folder.$fold_elt(ast)).collect())
|
|
|
|
}, )*)*
|
|
|
|
}
|
2016-05-19 09:45:37 +00:00
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
|
2016-06-26 02:14:27 +00:00
|
|
|
fn visit_with<V: Visitor>(&self, visitor: &mut V) {
|
2016-08-27 05:27:59 +00:00
|
|
|
match *self {
|
|
|
|
Expansion::OptExpr(Some(ref expr)) => visitor.visit_expr(expr),
|
|
|
|
$($( Expansion::$kind(ref ast) => visitor.$visit(ast), )*)*
|
|
|
|
$($( Expansion::$kind(ref ast) => for ast in ast.as_slice() {
|
|
|
|
visitor.$visit_elt(ast);
|
|
|
|
}, )*)*
|
|
|
|
_ => {}
|
|
|
|
}
|
2016-06-11 22:59:33 +00:00
|
|
|
}
|
2016-05-19 09:45:37 +00:00
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
}
|
2016-05-19 09:45:37 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
expansions! {
|
|
|
|
Expr: P<ast::Expr>, "expression", .make_expr, .fold_expr, .visit_expr;
|
|
|
|
Pat: P<ast::Pat>, "pattern", .make_pat, .fold_pat, .visit_pat;
|
|
|
|
Ty: P<ast::Ty>, "type", .make_ty, .fold_ty, .visit_ty;
|
|
|
|
Stmts: SmallVector<ast::Stmt>, "statement", .make_stmts, lift .fold_stmt, lift .visit_stmt;
|
|
|
|
Items: SmallVector<P<ast::Item>>, "item", .make_items, lift .fold_item, lift .visit_item;
|
|
|
|
TraitItems: SmallVector<ast::TraitItem>,
|
2016-06-17 11:02:42 +00:00
|
|
|
"trait item", .make_trait_items, lift .fold_trait_item, lift .visit_trait_item;
|
2016-08-27 05:27:59 +00:00
|
|
|
ImplItems: SmallVector<ast::ImplItem>,
|
2016-06-17 11:02:42 +00:00
|
|
|
"impl item", .make_impl_items, lift .fold_impl_item, lift .visit_impl_item;
|
2016-05-19 09:45:37 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
impl ExpansionKind {
|
|
|
|
fn dummy(self, span: Span) -> Expansion {
|
|
|
|
self.make_from(DummyResult::any(span)).unwrap()
|
2016-06-11 22:59:33 +00:00
|
|
|
}
|
2016-05-16 10:09:23 +00:00
|
|
|
}
|
2015-01-27 00:22:12 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
pub struct Invocation {
|
|
|
|
span: Span,
|
|
|
|
attrs: Vec<ast::Attribute>,
|
|
|
|
mac: ast::Mac,
|
|
|
|
ident: Option<Ident>,
|
|
|
|
mark: Mark,
|
|
|
|
kind: ExpansionKind,
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
2013-07-30 00:25:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
pub fn expand_expr(expr: ast::Expr, fld: &mut MacroExpander) -> P<ast::Expr> {
|
|
|
|
if let ast::ExprKind::Mac(mac) = expr.node {
|
|
|
|
let invoc = fld.new_invoc(mac, expr.attrs.into(), expr.span, ExpansionKind::Expr);
|
|
|
|
expand_mac_invoc(invoc, fld).make_expr()
|
|
|
|
} else {
|
|
|
|
P(noop_fold_expr(expr, fld))
|
2016-06-26 03:32:45 +00:00
|
|
|
}
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
|
|
|
|
2016-05-21 00:19:00 +00:00
|
|
|
/// Expand a macro invocation. Returns the result of expansion.
|
2016-08-27 05:27:59 +00:00
|
|
|
fn expand_mac_invoc(invoc: Invocation, fld: &mut MacroExpander) -> Expansion {
|
|
|
|
let Invocation { span, attrs, mac, ident, mark, kind } = invoc;
|
2016-05-21 00:15:00 +00:00
|
|
|
let Mac_ { path, tts, .. } = mac.node;
|
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
// Detect use of feature-gated or invalid attributes on macro invoations
|
|
|
|
// since they will not be detected after macro expansion.
|
|
|
|
for attr in attrs.iter() {
|
|
|
|
feature_gate::check_attribute(&attr, &fld.cx.parse_sess.span_diagnostic,
|
|
|
|
&fld.cx.parse_sess.codemap(),
|
|
|
|
&fld.cx.ecfg.features.unwrap());
|
|
|
|
}
|
2014-07-12 22:00:23 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
if path.segments.len() > 1 || path.global || !path.segments[0].parameters.is_empty() {
|
|
|
|
fld.cx.span_err(path.span, "expected macro name without module separators");
|
|
|
|
return kind.dummy(span);
|
|
|
|
}
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
let extname = path.segments[0].identifier.name;
|
|
|
|
let extension = if let Some(extension) = fld.cx.syntax_env.find(extname) {
|
|
|
|
extension
|
|
|
|
} else {
|
|
|
|
let mut err =
|
|
|
|
fld.cx.struct_span_err(path.span, &format!("macro undefined: '{}!'", &extname));
|
|
|
|
fld.cx.suggest_macro_name(&extname.as_str(), &mut err);
|
|
|
|
err.emit();
|
|
|
|
return kind.dummy(span);
|
|
|
|
};
|
2015-09-20 20:15:37 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
let ident = ident.unwrap_or(keywords::Invalid.ident());
|
|
|
|
let marked_tts = mark_tts(&tts, mark);
|
|
|
|
let opt_expanded = match *extension {
|
|
|
|
NormalTT(ref expandfun, exp_span, allow_internal_unstable) => {
|
|
|
|
if ident.name != keywords::Invalid.name() {
|
|
|
|
let msg =
|
|
|
|
format!("macro {}! expects no ident argument, given '{}'", extname, ident);
|
|
|
|
fld.cx.span_err(path.span, &msg);
|
|
|
|
return kind.dummy(span);
|
2015-09-20 20:15:37 +00:00
|
|
|
}
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fld.cx.bt_push(ExpnInfo {
|
|
|
|
call_site: span,
|
|
|
|
callee: NameAndSpan {
|
|
|
|
format: MacroBang(extname),
|
|
|
|
span: exp_span,
|
|
|
|
allow_internal_unstable: allow_internal_unstable,
|
|
|
|
},
|
|
|
|
});
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
kind.make_from(expandfun.expand(fld.cx, span, &marked_tts))
|
|
|
|
}
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
IdentTT(ref expander, tt_span, allow_internal_unstable) => {
|
|
|
|
if ident.name == keywords::Invalid.name() {
|
|
|
|
fld.cx.span_err(path.span,
|
|
|
|
&format!("macro {}! expects an ident argument", extname));
|
|
|
|
return kind.dummy(span);
|
|
|
|
};
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fld.cx.bt_push(ExpnInfo {
|
|
|
|
call_site: span,
|
|
|
|
callee: NameAndSpan {
|
|
|
|
format: MacroBang(extname),
|
|
|
|
span: tt_span,
|
|
|
|
allow_internal_unstable: allow_internal_unstable,
|
|
|
|
}
|
|
|
|
});
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
kind.make_from(expander.expand(fld.cx, span, ident, marked_tts))
|
|
|
|
}
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
MacroRulesTT => {
|
|
|
|
if ident.name == keywords::Invalid.name() {
|
|
|
|
fld.cx.span_err(path.span,
|
|
|
|
&format!("macro {}! expects an ident argument", extname));
|
|
|
|
return kind.dummy(span);
|
|
|
|
};
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fld.cx.bt_push(ExpnInfo {
|
|
|
|
call_site: span,
|
|
|
|
callee: NameAndSpan {
|
|
|
|
format: MacroBang(extname),
|
|
|
|
span: None,
|
|
|
|
// `macro_rules!` doesn't directly allow unstable
|
|
|
|
// (this is orthogonal to whether the macro it creates allows it)
|
|
|
|
allow_internal_unstable: false,
|
2016-08-04 00:55:05 +00:00
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
});
|
2016-05-21 00:19:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
let def = ast::MacroDef {
|
|
|
|
ident: ident,
|
|
|
|
id: ast::DUMMY_NODE_ID,
|
|
|
|
span: span,
|
|
|
|
imported_from: None,
|
|
|
|
use_locally: true,
|
|
|
|
body: marked_tts,
|
|
|
|
export: attr::contains_name(&attrs, "macro_export"),
|
|
|
|
allow_internal_unstable: attr::contains_name(&attrs, "allow_internal_unstable"),
|
|
|
|
attrs: attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
fld.cx.insert_macro(def.clone());
|
|
|
|
|
|
|
|
// If keep_macs is true, expands to a MacEager::items instead.
|
|
|
|
if fld.keep_macs {
|
|
|
|
Some(reconstruct_macro_rules(&def, &path))
|
|
|
|
} else {
|
|
|
|
Some(macro_scope_placeholder())
|
2014-07-12 22:00:23 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-21 00:15:00 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
MultiDecorator(..) | MultiModifier(..) => {
|
|
|
|
fld.cx.span_err(path.span,
|
|
|
|
&format!("`{}` can only be used in attributes", extname));
|
|
|
|
return kind.dummy(span);
|
|
|
|
}
|
|
|
|
};
|
2016-05-21 00:15:00 +00:00
|
|
|
|
|
|
|
let expanded = if let Some(expanded) = opt_expanded {
|
|
|
|
expanded
|
|
|
|
} else {
|
|
|
|
let msg = format!("non-{kind} macro in {kind} position: {name}",
|
2016-08-27 05:27:59 +00:00
|
|
|
name = path.segments[0].identifier.name, kind = kind.name());
|
2016-05-21 00:15:00 +00:00
|
|
|
fld.cx.span_err(path.span, &msg);
|
2016-08-27 05:27:59 +00:00
|
|
|
return kind.dummy(span);
|
2016-05-21 00:15:00 +00:00
|
|
|
};
|
|
|
|
|
2016-05-17 21:20:09 +00:00
|
|
|
let marked = expanded.fold_with(&mut Marker { mark: mark, expn_id: Some(fld.cx.backtrace()) });
|
2016-05-16 10:09:23 +00:00
|
|
|
let configured = marked.fold_with(&mut fld.strip_unconfigured());
|
2016-06-12 01:50:52 +00:00
|
|
|
fld.load_macros(&configured);
|
2016-08-04 00:55:05 +00:00
|
|
|
|
|
|
|
let fully_expanded = if fld.single_step {
|
|
|
|
configured
|
|
|
|
} else {
|
|
|
|
configured.fold_with(fld)
|
|
|
|
};
|
|
|
|
|
2016-05-21 00:15:00 +00:00
|
|
|
fld.cx.bt_pop();
|
|
|
|
fully_expanded
|
2014-07-12 22:00:23 +00:00
|
|
|
}
|
|
|
|
|
2014-07-04 19:05:43 +00:00
|
|
|
// eval $e with a new exts frame.
|
|
|
|
// must be a macro so that $e isn't evaluated too early.
|
2014-11-14 17:18:10 +00:00
|
|
|
macro_rules! with_exts_frame {
|
2013-05-08 22:27:29 +00:00
|
|
|
($extsboxexpr:expr,$macros_escape:expr,$e:expr) =>
|
2013-12-31 01:45:39 +00:00
|
|
|
({$extsboxexpr.push_frame();
|
|
|
|
$extsboxexpr.info().macros_escape = $macros_escape;
|
2013-02-26 18:15:29 +00:00
|
|
|
let result = $e;
|
2013-12-31 01:45:39 +00:00
|
|
|
$extsboxexpr.pop_frame();
|
2013-02-26 18:15:29 +00:00
|
|
|
result
|
|
|
|
})
|
2014-11-14 17:18:10 +00:00
|
|
|
}
|
2013-02-26 18:15:29 +00:00
|
|
|
|
2012-07-27 18:19:21 +00:00
|
|
|
// When we enter a module, record it, for the sake of `module!`
|
2014-09-13 16:06:01 +00:00
|
|
|
pub fn expand_item(it: P<ast::Item>, fld: &mut MacroExpander)
|
|
|
|
-> SmallVector<P<ast::Item>> {
|
2016-04-09 05:37:31 +00:00
|
|
|
expand_annotatable(Annotatable::Item(it), fld)
|
2014-12-02 18:07:41 +00:00
|
|
|
.into_iter().map(|i| i.expect_item()).collect()
|
2012-05-18 17:00:49 +00:00
|
|
|
}
|
|
|
|
|
2014-12-19 04:48:26 +00:00
|
|
|
// does this attribute list contain "macro_use" ?
|
|
|
|
fn contains_macro_use(fld: &mut MacroExpander, attrs: &[ast::Attribute]) -> bool {
|
2015-01-31 17:20:46 +00:00
|
|
|
for attr in attrs {
|
2014-12-19 04:48:26 +00:00
|
|
|
let mut is_use = attr.check_name("macro_use");
|
|
|
|
if attr.check_name("macro_escape") {
|
2015-12-20 21:00:43 +00:00
|
|
|
let mut err =
|
|
|
|
fld.cx.struct_span_warn(attr.span,
|
|
|
|
"macro_escape is a deprecated synonym for macro_use");
|
2014-12-19 04:48:26 +00:00
|
|
|
is_use = true;
|
2015-10-01 16:03:34 +00:00
|
|
|
if let ast::AttrStyle::Inner = attr.node.style {
|
2016-04-20 18:44:07 +00:00
|
|
|
err.help("consider an outer attribute, \
|
|
|
|
#[macro_use] mod ...").emit();
|
2015-12-20 21:00:43 +00:00
|
|
|
} else {
|
|
|
|
err.emit();
|
2014-12-19 04:48:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if is_use {
|
2016-07-15 20:13:17 +00:00
|
|
|
if !attr.is_word() {
|
|
|
|
fld.cx.span_err(attr.span, "arguments to macro_use are not allowed here");
|
2014-12-19 04:48:26 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
2013-02-26 18:15:29 +00:00
|
|
|
}
|
|
|
|
|
2014-07-12 22:00:23 +00:00
|
|
|
/// Expand a stmt
|
2016-02-11 20:33:09 +00:00
|
|
|
fn expand_stmt(stmt: Stmt, fld: &mut MacroExpander) -> SmallVector<Stmt> {
|
2015-11-03 16:39:51 +00:00
|
|
|
let (mac, style, attrs) = match stmt.node {
|
2016-06-17 02:30:01 +00:00
|
|
|
StmtKind::Mac(mac) => mac.unwrap(),
|
2016-06-22 02:50:05 +00:00
|
|
|
_ => return noop_fold_stmt(stmt, fld)
|
2012-12-12 20:25:40 +00:00
|
|
|
};
|
2015-04-07 13:21:18 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
let invoc = fld.new_invoc(mac, attrs.into(), stmt.span, ExpansionKind::Stmts);
|
|
|
|
let mut fully_expanded = expand_mac_invoc(invoc, fld).make_stmts();
|
2015-04-07 13:21:18 +00:00
|
|
|
|
|
|
|
// If this is a macro invocation with a semicolon, then apply that
|
|
|
|
// semicolon to the final statement produced by expansion.
|
2016-02-09 10:56:59 +00:00
|
|
|
if style == MacStmtStyle::Semicolon {
|
2015-04-11 04:06:34 +00:00
|
|
|
if let Some(stmt) = fully_expanded.pop() {
|
2016-07-02 09:01:21 +00:00
|
|
|
fully_expanded.push(stmt.add_trailing_semicolon());
|
2015-04-11 02:50:23 +00:00
|
|
|
}
|
2014-09-13 16:06:01 +00:00
|
|
|
}
|
2015-04-11 02:50:23 +00:00
|
|
|
|
|
|
|
fully_expanded
|
2012-11-20 01:31:22 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 16:06:01 +00:00
|
|
|
fn expand_pat(p: P<ast::Pat>, fld: &mut MacroExpander) -> P<ast::Pat> {
|
|
|
|
match p.node {
|
2016-02-11 18:16:33 +00:00
|
|
|
PatKind::Mac(_) => {}
|
2014-09-13 16:06:01 +00:00
|
|
|
_ => return noop_fold_pat(p, fld)
|
2014-05-19 20:59:35 +00:00
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
p.and_then(|p| match p.node {
|
|
|
|
PatKind::Mac(mac) => {
|
|
|
|
let invoc = fld.new_invoc(mac, Vec::new(), p.span, ExpansionKind::Pat);
|
|
|
|
expand_mac_invoc(invoc, fld).make_pat()
|
2014-09-13 16:06:01 +00:00
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
_ => unreachable!(),
|
2014-09-13 16:06:01 +00:00
|
|
|
})
|
2014-05-19 20:59:35 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 13:38:39 +00:00
|
|
|
fn expand_multi_modified(a: Annotatable, fld: &mut MacroExpander) -> SmallVector<Annotatable> {
|
2016-06-24 03:25:37 +00:00
|
|
|
match a {
|
2014-12-02 18:07:41 +00:00
|
|
|
Annotatable::Item(it) => match it.node {
|
2016-02-09 10:36:51 +00:00
|
|
|
ast::ItemKind::Mac(..) => {
|
2016-06-26 03:32:45 +00:00
|
|
|
if match it.node {
|
|
|
|
ItemKind::Mac(ref mac) => mac.node.path.segments.is_empty(),
|
|
|
|
_ => unreachable!(),
|
|
|
|
} {
|
|
|
|
return SmallVector::one(Annotatable::Item(it));
|
|
|
|
}
|
2016-06-09 00:47:52 +00:00
|
|
|
it.and_then(|it| match it.node {
|
2016-08-27 05:27:59 +00:00
|
|
|
ItemKind::Mac(mac) => {
|
|
|
|
let mut invoc = fld.new_invoc(mac, it.attrs, it.span, ExpansionKind::Items);
|
|
|
|
invoc.ident = Some(it.ident);
|
|
|
|
expand_mac_invoc(invoc, fld).make_items()
|
|
|
|
}
|
2016-05-21 00:19:00 +00:00
|
|
|
_ => unreachable!(),
|
2016-06-09 00:47:52 +00:00
|
|
|
})
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
2016-02-09 10:36:51 +00:00
|
|
|
ast::ItemKind::Mod(_) | ast::ItemKind::ForeignMod(_) => {
|
2014-12-02 18:07:41 +00:00
|
|
|
let valid_ident =
|
2016-04-18 19:53:50 +00:00
|
|
|
it.ident.name != keywords::Invalid.name();
|
2014-12-02 18:07:41 +00:00
|
|
|
|
|
|
|
if valid_ident {
|
|
|
|
fld.cx.mod_push(it.ident);
|
|
|
|
}
|
2016-06-01 10:25:19 +00:00
|
|
|
let macro_use = contains_macro_use(fld, &it.attrs);
|
2014-12-02 18:07:41 +00:00
|
|
|
let result = with_exts_frame!(fld.cx.syntax_env,
|
|
|
|
macro_use,
|
|
|
|
noop_fold_item(it, fld));
|
|
|
|
if valid_ident {
|
|
|
|
fld.cx.mod_pop();
|
|
|
|
}
|
2016-06-09 00:47:52 +00:00
|
|
|
result
|
2014-12-02 18:07:41 +00:00
|
|
|
},
|
2016-06-09 00:47:52 +00:00
|
|
|
_ => noop_fold_item(it, fld),
|
|
|
|
}.into_iter().map(|i| Annotatable::Item(i)).collect(),
|
2015-03-11 21:38:58 +00:00
|
|
|
|
2016-06-11 01:00:07 +00:00
|
|
|
Annotatable::TraitItem(it) => {
|
|
|
|
expand_trait_item(it.unwrap(), fld).into_iter().
|
|
|
|
map(|it| Annotatable::TraitItem(P(it))).collect()
|
|
|
|
}
|
2015-03-11 21:38:58 +00:00
|
|
|
|
2015-03-10 10:28:44 +00:00
|
|
|
Annotatable::ImplItem(ii) => {
|
2016-02-11 20:33:09 +00:00
|
|
|
expand_impl_item(ii.unwrap(), fld).into_iter().
|
|
|
|
map(|ii| Annotatable::ImplItem(P(ii))).collect()
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
2015-04-28 05:34:39 +00:00
|
|
|
}
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 13:38:39 +00:00
|
|
|
fn expand_annotatable(mut item: Annotatable, fld: &mut MacroExpander) -> SmallVector<Annotatable> {
|
|
|
|
let mut multi_modifier = None;
|
|
|
|
item = item.map_attrs(|mut attrs| {
|
|
|
|
for i in 0..attrs.len() {
|
|
|
|
if let Some(extension) = fld.cx.syntax_env.find(intern(&attrs[i].name())) {
|
2016-06-24 03:25:37 +00:00
|
|
|
match *extension {
|
|
|
|
MultiModifier(..) | MultiDecorator(..) => {
|
|
|
|
multi_modifier = Some((attrs.remove(i), extension));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
_ => {}
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
2016-06-12 13:38:39 +00:00
|
|
|
}
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
2016-06-12 13:38:39 +00:00
|
|
|
attrs
|
|
|
|
});
|
2014-12-02 18:07:41 +00:00
|
|
|
|
2016-06-12 13:38:39 +00:00
|
|
|
match multi_modifier {
|
|
|
|
None => expand_multi_modified(item, fld),
|
2016-06-24 03:25:37 +00:00
|
|
|
Some((attr, extension)) => {
|
|
|
|
attr::mark_used(&attr);
|
|
|
|
fld.cx.bt_push(ExpnInfo {
|
|
|
|
call_site: attr.span,
|
|
|
|
callee: NameAndSpan {
|
|
|
|
format: MacroAttribute(intern(&attr.name())),
|
|
|
|
span: Some(attr.span),
|
rustc: Implement custom derive (macros 1.1)
This commit is an implementation of [RFC 1681] which adds support to the
compiler for first-class user-define custom `#[derive]` modes with a far more
stable API than plugins have today.
[RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
The main features added by this commit are:
* A new `rustc-macro` crate-type. This crate type represents one which will
provide custom `derive` implementations and perhaps eventually flower into the
implementation of macros 2.0 as well.
* A new `rustc_macro` crate in the standard distribution. This crate will
provide the runtime interface between macro crates and the compiler. The API
here is particularly conservative right now but has quite a bit of room to
expand into any manner of APIs required by macro authors.
* The ability to load new derive modes through the `#[macro_use]` annotations on
other crates.
All support added here is gated behind the `rustc_macro` feature gate, both for
the library support (the `rustc_macro` crate) as well as the language features.
There are a few minor differences from the implementation outlined in the RFC,
such as the `rustc_macro` crate being available as a dylib and all symbols are
`dlsym`'d directly instead of having a shim compiled. These should only affect
the implementation, however, not the public interface.
This commit also ended up touching a lot of code related to `#[derive]`, making
a few notable changes:
* Recognized derive attributes are no longer desugared to `derive_Foo`. Wasn't
sure how to keep this behavior and *not* expose it to custom derive.
* Derive attributes no longer have access to unstable features by default, they
have to opt in on a granular level.
* The `derive(Copy,Clone)` optimization is now done through another "obscure
attribute" which is just intended to ferry along in the compiler that such an
optimization is possible. The `derive(PartialEq,Eq)` optimization was also
updated to do something similar.
---
One part of this PR which needs to be improved before stabilizing are the errors
and exact interfaces here. The error messages are relatively poor quality and
there are surprising spects of this such as `#[derive(PartialEq, Eq, MyTrait)]`
not working by default. The custom attributes added by the compiler end up
becoming unstable again when going through a custom impl.
Hopefully though this is enough to start allowing experimentation on crates.io!
syntax-[breaking-change]
2016-08-23 00:07:11 +00:00
|
|
|
allow_internal_unstable: false,
|
2016-06-24 03:25:37 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
let modified = match *extension {
|
|
|
|
MultiModifier(ref mac) => mac.expand(fld.cx, attr.span, &attr.node.value, item),
|
|
|
|
MultiDecorator(ref mac) => {
|
|
|
|
let mut items = Vec::new();
|
|
|
|
mac.expand(fld.cx, attr.span, &attr.node.value, &item,
|
|
|
|
&mut |item| items.push(item));
|
|
|
|
items.push(item);
|
|
|
|
items
|
|
|
|
}
|
|
|
|
_ => unreachable!(),
|
|
|
|
};
|
|
|
|
|
|
|
|
fld.cx.bt_pop();
|
2016-07-04 03:10:04 +00:00
|
|
|
let configured = modified.into_iter().flat_map(|it| {
|
|
|
|
it.fold_with(&mut fld.strip_unconfigured())
|
|
|
|
}).collect::<SmallVector<_>>();
|
|
|
|
|
|
|
|
configured.into_iter().flat_map(|it| expand_annotatable(it, fld)).collect()
|
2016-06-12 13:38:39 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 20:33:09 +00:00
|
|
|
fn expand_impl_item(ii: ast::ImplItem, fld: &mut MacroExpander)
|
|
|
|
-> SmallVector<ast::ImplItem> {
|
2015-03-10 10:28:44 +00:00
|
|
|
match ii.node {
|
2016-04-06 22:43:03 +00:00
|
|
|
ast::ImplItemKind::Macro(mac) => {
|
2016-08-27 05:27:59 +00:00
|
|
|
let invoc = fld.new_invoc(mac, ii.attrs, ii.span, ExpansionKind::ImplItems);
|
|
|
|
expand_mac_invoc(invoc, fld).make_impl_items()
|
2014-07-12 04:22:11 +00:00
|
|
|
}
|
2015-03-11 21:38:58 +00:00
|
|
|
_ => fold::noop_fold_impl_item(ii, fld)
|
2015-03-05 02:48:54 +00:00
|
|
|
}
|
2014-07-04 18:24:28 +00:00
|
|
|
}
|
|
|
|
|
2016-06-11 01:00:07 +00:00
|
|
|
fn expand_trait_item(ti: ast::TraitItem, fld: &mut MacroExpander)
|
|
|
|
-> SmallVector<ast::TraitItem> {
|
|
|
|
match ti.node {
|
|
|
|
ast::TraitItemKind::Macro(mac) => {
|
2016-08-27 05:27:59 +00:00
|
|
|
let invoc = fld.new_invoc(mac, ti.attrs, ti.span, ExpansionKind::TraitItems);
|
|
|
|
expand_mac_invoc(invoc, fld).make_trait_items()
|
2016-06-11 01:00:07 +00:00
|
|
|
}
|
|
|
|
_ => fold::noop_fold_trait_item(ti, fld)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-26 04:54:19 +00:00
|
|
|
pub fn expand_type(t: P<ast::Ty>, fld: &mut MacroExpander) -> P<ast::Ty> {
|
2016-08-30 07:05:25 +00:00
|
|
|
let t = match t.node {
|
|
|
|
ast::TyKind::Mac(_) => t.unwrap(),
|
|
|
|
_ => return fold::noop_fold_ty(t, fld),
|
|
|
|
};
|
|
|
|
|
|
|
|
match t.node {
|
2016-02-08 15:53:21 +00:00
|
|
|
ast::TyKind::Mac(mac) => {
|
2016-08-27 05:27:59 +00:00
|
|
|
let invoc = fld.new_invoc(mac, Vec::new(), t.span, ExpansionKind::Ty);
|
|
|
|
expand_mac_invoc(invoc, fld).make_ty()
|
2015-07-26 04:54:19 +00:00
|
|
|
}
|
2016-08-30 07:05:25 +00:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2015-07-26 04:54:19 +00:00
|
|
|
}
|
|
|
|
|
2014-07-03 06:16:01 +00:00
|
|
|
/// A tree-folder that performs macro expansion
|
2014-08-28 01:46:52 +00:00
|
|
|
pub struct MacroExpander<'a, 'b:'a> {
|
2014-03-27 22:39:48 +00:00
|
|
|
pub cx: &'a mut ExtCtxt<'b>,
|
2016-08-04 00:55:05 +00:00
|
|
|
pub single_step: bool,
|
|
|
|
pub keep_macs: bool,
|
2014-12-14 02:42:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'b> MacroExpander<'a, 'b> {
|
2016-08-04 00:55:05 +00:00
|
|
|
pub fn new(cx: &'a mut ExtCtxt<'b>,
|
|
|
|
single_step: bool,
|
|
|
|
keep_macs: bool) -> MacroExpander<'a, 'b> {
|
|
|
|
MacroExpander {
|
|
|
|
cx: cx,
|
|
|
|
single_step: single_step,
|
|
|
|
keep_macs: keep_macs
|
|
|
|
}
|
2014-12-14 02:42:41 +00:00
|
|
|
}
|
2016-05-16 10:09:23 +00:00
|
|
|
|
|
|
|
fn strip_unconfigured(&mut self) -> StripUnconfigured {
|
2016-06-11 01:37:24 +00:00
|
|
|
StripUnconfigured {
|
|
|
|
config: &self.cx.cfg,
|
|
|
|
should_test: self.cx.ecfg.should_test,
|
|
|
|
sess: self.cx.parse_sess,
|
|
|
|
features: self.cx.ecfg.features,
|
|
|
|
}
|
2016-05-16 10:09:23 +00:00
|
|
|
}
|
2016-06-12 01:50:52 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fn load_macros(&mut self, node: &Expansion) {
|
2016-06-12 01:50:52 +00:00
|
|
|
struct MacroLoadingVisitor<'a, 'b: 'a>{
|
|
|
|
cx: &'a mut ExtCtxt<'b>,
|
|
|
|
at_crate_root: bool,
|
|
|
|
}
|
|
|
|
|
2016-06-26 02:14:27 +00:00
|
|
|
impl<'a, 'b> Visitor for MacroLoadingVisitor<'a, 'b> {
|
|
|
|
fn visit_mac(&mut self, _: &ast::Mac) {}
|
|
|
|
fn visit_item(&mut self, item: &ast::Item) {
|
2016-06-12 01:50:52 +00:00
|
|
|
if let ast::ItemKind::ExternCrate(..) = item.node {
|
|
|
|
// We need to error on `#[macro_use] extern crate` when it isn't at the
|
|
|
|
// crate root, because `$crate` won't work properly.
|
|
|
|
for def in self.cx.loader.load_crate(item, self.at_crate_root) {
|
rustc: Implement custom derive (macros 1.1)
This commit is an implementation of [RFC 1681] which adds support to the
compiler for first-class user-define custom `#[derive]` modes with a far more
stable API than plugins have today.
[RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
The main features added by this commit are:
* A new `rustc-macro` crate-type. This crate type represents one which will
provide custom `derive` implementations and perhaps eventually flower into the
implementation of macros 2.0 as well.
* A new `rustc_macro` crate in the standard distribution. This crate will
provide the runtime interface between macro crates and the compiler. The API
here is particularly conservative right now but has quite a bit of room to
expand into any manner of APIs required by macro authors.
* The ability to load new derive modes through the `#[macro_use]` annotations on
other crates.
All support added here is gated behind the `rustc_macro` feature gate, both for
the library support (the `rustc_macro` crate) as well as the language features.
There are a few minor differences from the implementation outlined in the RFC,
such as the `rustc_macro` crate being available as a dylib and all symbols are
`dlsym`'d directly instead of having a shim compiled. These should only affect
the implementation, however, not the public interface.
This commit also ended up touching a lot of code related to `#[derive]`, making
a few notable changes:
* Recognized derive attributes are no longer desugared to `derive_Foo`. Wasn't
sure how to keep this behavior and *not* expose it to custom derive.
* Derive attributes no longer have access to unstable features by default, they
have to opt in on a granular level.
* The `derive(Copy,Clone)` optimization is now done through another "obscure
attribute" which is just intended to ferry along in the compiler that such an
optimization is possible. The `derive(PartialEq,Eq)` optimization was also
updated to do something similar.
---
One part of this PR which needs to be improved before stabilizing are the errors
and exact interfaces here. The error messages are relatively poor quality and
there are surprising spects of this such as `#[derive(PartialEq, Eq, MyTrait)]`
not working by default. The custom attributes added by the compiler end up
becoming unstable again when going through a custom impl.
Hopefully though this is enough to start allowing experimentation on crates.io!
syntax-[breaking-change]
2016-08-23 00:07:11 +00:00
|
|
|
match def {
|
|
|
|
LoadedMacro::Def(def) => self.cx.insert_macro(def),
|
|
|
|
LoadedMacro::CustomDerive(name, ext) => {
|
|
|
|
self.cx.insert_custom_derive(&name, ext, item.span);
|
|
|
|
}
|
|
|
|
}
|
2016-06-12 01:50:52 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let at_crate_root = ::std::mem::replace(&mut self.at_crate_root, false);
|
|
|
|
visit::walk_item(self, item);
|
|
|
|
self.at_crate_root = at_crate_root;
|
|
|
|
}
|
|
|
|
}
|
2016-06-26 02:14:27 +00:00
|
|
|
fn visit_block(&mut self, block: &ast::Block) {
|
2016-06-12 01:50:52 +00:00
|
|
|
let at_crate_root = ::std::mem::replace(&mut self.at_crate_root, false);
|
|
|
|
visit::walk_block(self, block);
|
|
|
|
self.at_crate_root = at_crate_root;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
node.visit_with(&mut MacroLoadingVisitor {
|
|
|
|
at_crate_root: self.cx.syntax_env.is_crate_root(),
|
|
|
|
cx: self.cx,
|
|
|
|
});
|
|
|
|
}
|
2016-08-27 05:27:59 +00:00
|
|
|
|
|
|
|
fn new_invoc(&self, mac: ast::Mac, attrs: Vec<ast::Attribute>, span: Span, kind: ExpansionKind)
|
|
|
|
-> Invocation {
|
|
|
|
let mark = Mark::fresh();
|
|
|
|
Invocation { span: span, attrs: attrs, mac: mac, mark: mark, kind: kind, ident: None }
|
|
|
|
}
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2014-03-09 14:54:34 +00:00
|
|
|
impl<'a, 'b> Folder for MacroExpander<'a, 'b> {
|
2016-03-01 09:28:42 +00:00
|
|
|
fn fold_crate(&mut self, c: Crate) -> Crate {
|
2016-08-31 09:02:45 +00:00
|
|
|
let mut directory = PathBuf::from(self.cx.parse_sess.codemap().span_to_filename(c.span));
|
|
|
|
directory.pop();
|
|
|
|
self.cx.directory = directory;
|
2016-03-01 09:28:42 +00:00
|
|
|
noop_fold_crate(c, self)
|
|
|
|
}
|
|
|
|
|
2014-09-13 16:06:01 +00:00
|
|
|
fn fold_expr(&mut self, expr: P<ast::Expr>) -> P<ast::Expr> {
|
2016-05-26 23:48:45 +00:00
|
|
|
expr.and_then(|expr| expand_expr(expr, self))
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2016-05-16 10:09:23 +00:00
|
|
|
fn fold_opt_expr(&mut self, expr: P<ast::Expr>) -> Option<P<ast::Expr>> {
|
2016-05-26 23:48:45 +00:00
|
|
|
expr.and_then(|expr| match expr.node {
|
2016-08-27 05:27:59 +00:00
|
|
|
ast::ExprKind::Mac(mac) => {
|
|
|
|
let invoc =
|
|
|
|
self.new_invoc(mac, expr.attrs.into(), expr.span, ExpansionKind::OptExpr);
|
|
|
|
expand_mac_invoc(invoc, self).make_opt_expr()
|
|
|
|
}
|
2016-05-26 23:48:45 +00:00
|
|
|
_ => Some(expand_expr(expr, self)),
|
2016-05-16 10:09:23 +00:00
|
|
|
})
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2014-09-13 16:06:01 +00:00
|
|
|
fn fold_pat(&mut self, pat: P<ast::Pat>) -> P<ast::Pat> {
|
2014-05-19 20:59:35 +00:00
|
|
|
expand_pat(pat, self)
|
|
|
|
}
|
|
|
|
|
2014-09-13 16:06:01 +00:00
|
|
|
fn fold_item(&mut self, item: P<ast::Item>) -> SmallVector<P<ast::Item>> {
|
2016-03-01 09:28:42 +00:00
|
|
|
use std::mem::replace;
|
|
|
|
let result;
|
|
|
|
if let ast::ItemKind::Mod(ast::Mod { inner, .. }) = item.node {
|
|
|
|
if item.span.contains(inner) {
|
2016-08-31 09:02:45 +00:00
|
|
|
let directory = self.cx.directory.clone();
|
|
|
|
self.cx.directory.push(&*{
|
|
|
|
::attr::first_attr_value_str_by_name(&item.attrs, "path")
|
|
|
|
.unwrap_or(item.ident.name.as_str())
|
|
|
|
});
|
2016-03-01 09:28:42 +00:00
|
|
|
result = expand_item(item, self);
|
2016-08-31 09:02:45 +00:00
|
|
|
self.cx.directory = directory;
|
2016-03-01 09:28:42 +00:00
|
|
|
} else {
|
2016-08-31 09:02:45 +00:00
|
|
|
let mut directory = match inner {
|
|
|
|
syntax_pos::DUMMY_SP => PathBuf::new(),
|
|
|
|
_ => PathBuf::from(self.cx.parse_sess.codemap().span_to_filename(inner)),
|
|
|
|
};
|
|
|
|
directory.pop();
|
|
|
|
let directory = replace(&mut self.cx.directory, directory);
|
2016-03-01 09:28:42 +00:00
|
|
|
result = expand_item(item, self);
|
2016-08-31 09:02:45 +00:00
|
|
|
self.cx.directory = directory;
|
2016-03-01 09:28:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
result = expand_item(item, self);
|
|
|
|
}
|
|
|
|
result
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 20:33:09 +00:00
|
|
|
fn fold_stmt(&mut self, stmt: ast::Stmt) -> SmallVector<ast::Stmt> {
|
2015-04-07 13:21:18 +00:00
|
|
|
expand_stmt(stmt, self)
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2013-12-28 03:34:51 +00:00
|
|
|
fn fold_block(&mut self, block: P<Block>) -> P<Block> {
|
2016-03-01 09:28:42 +00:00
|
|
|
let was_in_block = ::std::mem::replace(&mut self.cx.in_block, true);
|
2016-06-22 02:50:05 +00:00
|
|
|
let result = with_exts_frame!(self.cx.syntax_env, false, noop_fold_block(block, self));
|
2016-03-01 09:28:42 +00:00
|
|
|
self.cx.in_block = was_in_block;
|
|
|
|
result
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 20:33:09 +00:00
|
|
|
fn fold_trait_item(&mut self, i: ast::TraitItem) -> SmallVector<ast::TraitItem> {
|
|
|
|
expand_annotatable(Annotatable::TraitItem(P(i)), self)
|
2015-03-10 10:28:44 +00:00
|
|
|
.into_iter().map(|i| i.expect_trait_item()).collect()
|
2014-12-02 18:07:41 +00:00
|
|
|
}
|
|
|
|
|
2016-02-11 20:33:09 +00:00
|
|
|
fn fold_impl_item(&mut self, i: ast::ImplItem) -> SmallVector<ast::ImplItem> {
|
|
|
|
expand_annotatable(Annotatable::ImplItem(P(i)), self)
|
2015-03-10 10:28:44 +00:00
|
|
|
.into_iter().map(|i| i.expect_impl_item()).collect()
|
2014-07-04 18:24:28 +00:00
|
|
|
}
|
|
|
|
|
2015-07-26 04:54:19 +00:00
|
|
|
fn fold_ty(&mut self, ty: P<ast::Ty>) -> P<ast::Ty> {
|
|
|
|
expand_type(ty, self)
|
|
|
|
}
|
2013-07-16 05:05:50 +00:00
|
|
|
}
|
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
fn macro_scope_placeholder() -> Expansion {
|
|
|
|
Expansion::Items(SmallVector::one(P(ast::Item {
|
|
|
|
ident: keywords::Invalid.ident(),
|
|
|
|
attrs: Vec::new(),
|
|
|
|
id: ast::DUMMY_NODE_ID,
|
|
|
|
node: ast::ItemKind::Mac(dummy_spanned(ast::Mac_ {
|
|
|
|
path: ast::Path { span: syntax_pos::DUMMY_SP, global: false, segments: Vec::new() },
|
|
|
|
tts: Vec::new(),
|
|
|
|
})),
|
|
|
|
vis: ast::Visibility::Inherited,
|
|
|
|
span: syntax_pos::DUMMY_SP,
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn reconstruct_macro_rules(def: &ast::MacroDef, path: &ast::Path) -> Expansion {
|
|
|
|
Expansion::Items(SmallVector::one(P(ast::Item {
|
|
|
|
ident: def.ident,
|
|
|
|
attrs: def.attrs.clone(),
|
|
|
|
id: ast::DUMMY_NODE_ID,
|
|
|
|
node: ast::ItemKind::Mac(ast::Mac {
|
|
|
|
span: def.span,
|
|
|
|
node: ast::Mac_ {
|
|
|
|
path: path.clone(),
|
|
|
|
tts: def.body.clone(),
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
vis: ast::Visibility::Inherited,
|
|
|
|
span: def.span,
|
|
|
|
})))
|
|
|
|
}
|
|
|
|
|
2015-02-15 20:30:45 +00:00
|
|
|
pub struct ExpansionConfig<'feat> {
|
2014-06-06 20:21:18 +00:00
|
|
|
pub crate_name: String,
|
2015-02-15 20:30:45 +00:00
|
|
|
pub features: Option<&'feat Features>,
|
2015-01-17 23:33:05 +00:00
|
|
|
pub recursion_limit: usize,
|
2015-04-14 13:36:38 +00:00
|
|
|
pub trace_mac: bool,
|
2016-06-01 01:27:12 +00:00
|
|
|
pub should_test: bool, // If false, strip `#[test]` nodes
|
2014-09-27 00:14:23 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 20:56:28 +00:00
|
|
|
macro_rules! feature_tests {
|
|
|
|
($( fn $getter:ident = $field:ident, )*) => {
|
|
|
|
$(
|
|
|
|
pub fn $getter(&self) -> bool {
|
|
|
|
match self.features {
|
|
|
|
Some(&Features { $field: true, .. }) => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-15 20:30:45 +00:00
|
|
|
impl<'feat> ExpansionConfig<'feat> {
|
|
|
|
pub fn default(crate_name: String) -> ExpansionConfig<'static> {
|
2014-09-27 00:14:23 +00:00
|
|
|
ExpansionConfig {
|
|
|
|
crate_name: crate_name,
|
2015-02-15 20:30:45 +00:00
|
|
|
features: None,
|
2014-10-01 09:38:54 +00:00
|
|
|
recursion_limit: 64,
|
2015-04-14 13:36:38 +00:00
|
|
|
trace_mac: false,
|
2016-06-01 01:27:12 +00:00
|
|
|
should_test: false,
|
2014-09-27 00:14:23 +00:00
|
|
|
}
|
|
|
|
}
|
2015-02-15 20:30:45 +00:00
|
|
|
|
2015-03-06 20:56:28 +00:00
|
|
|
feature_tests! {
|
2016-04-04 15:08:41 +00:00
|
|
|
fn enable_quotes = quote,
|
|
|
|
fn enable_asm = asm,
|
|
|
|
fn enable_log_syntax = log_syntax,
|
|
|
|
fn enable_concat_idents = concat_idents,
|
|
|
|
fn enable_trace_macros = trace_macros,
|
2015-03-06 20:56:28 +00:00
|
|
|
fn enable_allow_internal_unstable = allow_internal_unstable,
|
2016-04-04 15:08:41 +00:00
|
|
|
fn enable_custom_derive = custom_derive,
|
|
|
|
fn enable_pushpop_unsafe = pushpop_unsafe,
|
rustc: Implement custom derive (macros 1.1)
This commit is an implementation of [RFC 1681] which adds support to the
compiler for first-class user-define custom `#[derive]` modes with a far more
stable API than plugins have today.
[RFC 1681]: https://github.com/rust-lang/rfcs/blob/master/text/1681-macros-1.1.md
The main features added by this commit are:
* A new `rustc-macro` crate-type. This crate type represents one which will
provide custom `derive` implementations and perhaps eventually flower into the
implementation of macros 2.0 as well.
* A new `rustc_macro` crate in the standard distribution. This crate will
provide the runtime interface between macro crates and the compiler. The API
here is particularly conservative right now but has quite a bit of room to
expand into any manner of APIs required by macro authors.
* The ability to load new derive modes through the `#[macro_use]` annotations on
other crates.
All support added here is gated behind the `rustc_macro` feature gate, both for
the library support (the `rustc_macro` crate) as well as the language features.
There are a few minor differences from the implementation outlined in the RFC,
such as the `rustc_macro` crate being available as a dylib and all symbols are
`dlsym`'d directly instead of having a shim compiled. These should only affect
the implementation, however, not the public interface.
This commit also ended up touching a lot of code related to `#[derive]`, making
a few notable changes:
* Recognized derive attributes are no longer desugared to `derive_Foo`. Wasn't
sure how to keep this behavior and *not* expose it to custom derive.
* Derive attributes no longer have access to unstable features by default, they
have to opt in on a granular level.
* The `derive(Copy,Clone)` optimization is now done through another "obscure
attribute" which is just intended to ferry along in the compiler that such an
optimization is possible. The `derive(PartialEq,Eq)` optimization was also
updated to do something similar.
---
One part of this PR which needs to be improved before stabilizing are the errors
and exact interfaces here. The error messages are relatively poor quality and
there are surprising spects of this such as `#[derive(PartialEq, Eq, MyTrait)]`
not working by default. The custom attributes added by the compiler end up
becoming unstable again when going through a custom impl.
Hopefully though this is enough to start allowing experimentation on crates.io!
syntax-[breaking-change]
2016-08-23 00:07:11 +00:00
|
|
|
fn enable_rustc_macro = rustc_macro,
|
Add #[allow_internal_unstable] to track stability for macros better.
Unstable items used in a macro expansion will now always trigger
stability warnings, *unless* the unstable items are directly inside a
macro marked with `#[allow_internal_unstable]`. IOW, the compiler warns
unless the span of the unstable item is a subspan of the definition of a
macro marked with that attribute.
E.g.
#[allow_internal_unstable]
macro_rules! foo {
($e: expr) => {{
$e;
unstable(); // no warning
only_called_by_foo!();
}}
}
macro_rules! only_called_by_foo {
() => { unstable() } // warning
}
foo!(unstable()) // warning
The unstable inside `foo` is fine, due to the attribute. But the
`unstable` inside `only_called_by_foo` is not, since that macro doesn't
have the attribute, and the `unstable` passed into `foo` is also not
fine since it isn't contained in the macro itself (that is, even though
it is only used directly in the macro).
In the process this makes the stability tracking much more precise,
e.g. previously `println!("{}", unstable())` got no warning, but now it
does. As such, this is a bug fix that may cause [breaking-change]s.
The attribute is definitely feature gated, since it explicitly allows
side-stepping the feature gating system.
2015-03-01 03:09:28 +00:00
|
|
|
}
|
2014-03-01 07:17:38 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 00:55:05 +00:00
|
|
|
pub fn expand_crate(cx: &mut ExtCtxt,
|
2015-12-10 14:23:14 +00:00
|
|
|
user_exts: Vec<NamedSyntaxExtension>,
|
2016-08-04 00:55:05 +00:00
|
|
|
c: Crate) -> Crate {
|
|
|
|
let mut expander = MacroExpander::new(cx, false, false);
|
|
|
|
expand_crate_with_expander(&mut expander, user_exts, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Expands crate using supplied MacroExpander - allows for
|
|
|
|
// non-standard expansion behaviour (e.g. step-wise).
|
|
|
|
pub fn expand_crate_with_expander(expander: &mut MacroExpander,
|
|
|
|
user_exts: Vec<NamedSyntaxExtension>,
|
|
|
|
mut c: Crate) -> Crate {
|
2015-07-30 00:01:14 +00:00
|
|
|
if std_inject::no_core(&c) {
|
2016-08-04 00:55:05 +00:00
|
|
|
expander.cx.crate_root = None;
|
2015-07-30 00:01:14 +00:00
|
|
|
} else if std_inject::no_std(&c) {
|
2016-08-04 00:55:05 +00:00
|
|
|
expander.cx.crate_root = Some("core");
|
2015-07-30 00:01:14 +00:00
|
|
|
} else {
|
2016-08-04 00:55:05 +00:00
|
|
|
expander.cx.crate_root = Some("std");
|
2015-07-30 00:01:14 +00:00
|
|
|
}
|
2014-09-07 21:57:26 +00:00
|
|
|
|
2016-08-04 00:55:05 +00:00
|
|
|
// User extensions must be added before expander.load_macros is called,
|
|
|
|
// so that macros from external crates shadow user defined extensions.
|
|
|
|
for (name, extension) in user_exts {
|
|
|
|
expander.cx.syntax_env.insert(name, extension);
|
|
|
|
}
|
2014-05-24 23:16:10 +00:00
|
|
|
|
2016-08-27 05:27:59 +00:00
|
|
|
let items = Expansion::Items(SmallVector::many(c.module.items));
|
2016-08-31 23:39:16 +00:00
|
|
|
let configured = items.fold_with(&mut expander.strip_unconfigured());
|
|
|
|
expander.load_macros(&configured);
|
2016-08-27 05:27:59 +00:00
|
|
|
c.module.items = configured.make_items().into();
|
2016-06-12 01:50:52 +00:00
|
|
|
|
2016-08-04 00:55:05 +00:00
|
|
|
let err_count = expander.cx.parse_sess.span_diagnostic.err_count();
|
|
|
|
let mut ret = expander.fold_crate(c);
|
|
|
|
ret.exported_macros = expander.cx.exported_macros.clone();
|
2016-01-20 09:07:33 +00:00
|
|
|
|
2016-08-04 00:55:05 +00:00
|
|
|
if expander.cx.parse_sess.span_diagnostic.err_count() > err_count {
|
|
|
|
expander.cx.parse_sess.span_diagnostic.abort_if_errors();
|
|
|
|
}
|
2016-01-20 09:07:33 +00:00
|
|
|
|
2016-08-04 00:55:05 +00:00
|
|
|
ret
|
2011-07-06 22:22:23 +00:00
|
|
|
}
|
2013-02-26 18:15:29 +00:00
|
|
|
|
2016-05-17 21:20:09 +00:00
|
|
|
// A Marker adds the given mark to the syntax context and
|
|
|
|
// sets spans' `expn_id` to the given expn_id (unless it is `None`).
|
2016-06-22 08:03:42 +00:00
|
|
|
struct Marker { mark: Mark, expn_id: Option<ExpnId> }
|
2013-07-09 22:56:21 +00:00
|
|
|
|
2014-02-06 22:38:33 +00:00
|
|
|
impl Folder for Marker {
|
2016-06-22 08:03:42 +00:00
|
|
|
fn fold_ident(&mut self, mut ident: Ident) -> Ident {
|
|
|
|
ident.ctxt = ident.ctxt.apply_mark(self.mark);
|
|
|
|
ident
|
|
|
|
}
|
|
|
|
fn fold_mac(&mut self, mac: ast::Mac) -> ast::Mac {
|
|
|
|
noop_fold_mac(mac, self)
|
2016-05-17 21:20:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn new_span(&mut self, mut span: Span) -> Span {
|
|
|
|
if let Some(expn_id) = self.expn_id {
|
|
|
|
span.expn_id = expn_id;
|
2013-08-29 19:10:02 +00:00
|
|
|
}
|
2016-05-17 21:20:09 +00:00
|
|
|
span
|
2013-07-09 22:56:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-29 12:59:08 +00:00
|
|
|
// apply a given mark to the given token trees. Used prior to expansion of a macro.
|
2016-06-22 08:03:42 +00:00
|
|
|
fn mark_tts(tts: &[TokenTree], m: Mark) -> Vec<TokenTree> {
|
2016-05-17 21:20:09 +00:00
|
|
|
noop_fold_tts(tts, &mut Marker{mark:m, expn_id: None})
|
2013-06-29 12:59:08 +00:00
|
|
|
}
|
|
|
|
|
2014-07-09 23:41:13 +00:00
|
|
|
|
2013-02-26 18:15:29 +00:00
|
|
|
#[cfg(test)]
|
2015-04-24 15:30:41 +00:00
|
|
|
mod tests {
|
2016-06-26 04:12:31 +00:00
|
|
|
use super::{expand_crate, ExpansionConfig};
|
2013-02-25 19:11:21 +00:00
|
|
|
use ast;
|
2016-06-02 01:14:33 +00:00
|
|
|
use ext::base::{ExtCtxt, DummyMacroLoader};
|
2013-02-25 19:11:21 +00:00
|
|
|
use parse;
|
2014-03-09 14:54:34 +00:00
|
|
|
use util::parser_testing::{string_to_parser};
|
2013-06-29 12:59:08 +00:00
|
|
|
use visit;
|
2013-10-28 08:20:26 +00:00
|
|
|
use visit::Visitor;
|
|
|
|
|
|
|
|
// a visitor that extracts the paths
|
|
|
|
// from a given thingy and puts them in a mutable
|
|
|
|
// array (passed in to the traversal)
|
2015-01-04 03:54:18 +00:00
|
|
|
#[derive(Clone)]
|
2014-06-25 00:03:49 +00:00
|
|
|
struct PathExprFinderContext {
|
2014-02-28 21:09:09 +00:00
|
|
|
path_accumulator: Vec<ast::Path> ,
|
2013-10-28 08:20:26 +00:00
|
|
|
}
|
|
|
|
|
2016-06-12 07:51:31 +00:00
|
|
|
impl Visitor for PathExprFinderContext {
|
2014-09-12 10:10:30 +00:00
|
|
|
fn visit_expr(&mut self, expr: &ast::Expr) {
|
2016-02-08 15:05:05 +00:00
|
|
|
if let ast::ExprKind::Path(None, ref p) = expr.node {
|
2015-02-17 17:29:13 +00:00
|
|
|
self.path_accumulator.push(p.clone());
|
2013-10-28 08:20:26 +00:00
|
|
|
}
|
2015-02-17 17:29:13 +00:00
|
|
|
visit::walk_expr(self, expr);
|
2013-10-28 08:20:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-26 18:15:29 +00:00
|
|
|
// these following tests are quite fragile, in that they don't test what
|
|
|
|
// *kind* of failure occurs.
|
|
|
|
|
2015-02-15 20:30:45 +00:00
|
|
|
fn test_ecfg() -> ExpansionConfig<'static> {
|
2014-09-27 00:14:23 +00:00
|
|
|
ExpansionConfig::default("test".to_string())
|
|
|
|
}
|
|
|
|
|
2014-06-24 01:45:51 +00:00
|
|
|
// make sure that macros can't escape fns
|
2015-01-31 23:08:25 +00:00
|
|
|
#[should_panic]
|
2013-02-26 18:15:29 +00:00
|
|
|
#[test] fn macros_cant_escape_fns_test () {
|
2014-11-14 17:18:10 +00:00
|
|
|
let src = "fn bogus() {macro_rules! z (() => (3+4));}\
|
2015-01-17 23:55:21 +00:00
|
|
|
fn inty() -> i32 { z!() }".to_string();
|
2015-05-13 20:00:17 +00:00
|
|
|
let sess = parse::ParseSess::new();
|
2013-02-26 18:15:29 +00:00
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2014-05-25 10:17:19 +00:00
|
|
|
"<test>".to_string(),
|
2013-06-12 17:02:55 +00:00
|
|
|
src,
|
2016-02-13 17:05:16 +00:00
|
|
|
Vec::new(), &sess).unwrap();
|
2013-02-26 18:15:29 +00:00
|
|
|
// should fail:
|
2016-06-11 01:37:24 +00:00
|
|
|
let mut loader = DummyMacroLoader;
|
2016-08-04 00:55:05 +00:00
|
|
|
let mut ecx = ExtCtxt::new(&sess, vec![], test_ecfg(), &mut loader);
|
|
|
|
expand_crate(&mut ecx, vec![], crate_ast);
|
2013-02-26 18:15:29 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 01:45:51 +00:00
|
|
|
// make sure that macros can't escape modules
|
2015-01-31 23:08:25 +00:00
|
|
|
#[should_panic]
|
2013-02-26 18:15:29 +00:00
|
|
|
#[test] fn macros_cant_escape_mods_test () {
|
2014-11-14 17:18:10 +00:00
|
|
|
let src = "mod foo {macro_rules! z (() => (3+4));}\
|
2015-01-17 23:55:21 +00:00
|
|
|
fn inty() -> i32 { z!() }".to_string();
|
2015-05-13 20:00:17 +00:00
|
|
|
let sess = parse::ParseSess::new();
|
2013-02-26 18:15:29 +00:00
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2014-05-25 10:17:19 +00:00
|
|
|
"<test>".to_string(),
|
2013-06-12 17:02:55 +00:00
|
|
|
src,
|
2016-02-13 17:05:16 +00:00
|
|
|
Vec::new(), &sess).unwrap();
|
2016-06-11 01:37:24 +00:00
|
|
|
let mut loader = DummyMacroLoader;
|
2016-08-04 00:55:05 +00:00
|
|
|
let mut ecx = ExtCtxt::new(&sess, vec![], test_ecfg(), &mut loader);
|
|
|
|
expand_crate(&mut ecx, vec![], crate_ast);
|
2013-02-26 18:15:29 +00:00
|
|
|
}
|
|
|
|
|
2014-12-19 04:48:26 +00:00
|
|
|
// macro_use modules should allow macros to escape
|
2013-02-26 18:15:29 +00:00
|
|
|
#[test] fn macros_can_escape_flattened_mods_test () {
|
2014-12-19 04:48:26 +00:00
|
|
|
let src = "#[macro_use] mod foo {macro_rules! z (() => (3+4));}\
|
2015-01-17 23:55:21 +00:00
|
|
|
fn inty() -> i32 { z!() }".to_string();
|
2015-05-13 20:00:17 +00:00
|
|
|
let sess = parse::ParseSess::new();
|
2013-02-26 18:15:29 +00:00
|
|
|
let crate_ast = parse::parse_crate_from_source_str(
|
2014-05-25 10:17:19 +00:00
|
|
|
"<test>".to_string(),
|
2013-06-12 17:02:55 +00:00
|
|
|
src,
|
2016-02-13 17:05:16 +00:00
|
|
|
Vec::new(), &sess).unwrap();
|
2016-06-11 01:37:24 +00:00
|
|
|
let mut loader = DummyMacroLoader;
|
2016-08-04 00:55:05 +00:00
|
|
|
let mut ecx = ExtCtxt::new(&sess, vec![], test_ecfg(), &mut loader);
|
|
|
|
expand_crate(&mut ecx, vec![], crate_ast);
|
2013-02-26 18:15:29 +00:00
|
|
|
}
|
|
|
|
|
2014-05-22 23:57:53 +00:00
|
|
|
fn expand_crate_str(crate_str: String) -> ast::Crate {
|
2015-05-13 20:00:17 +00:00
|
|
|
let ps = parse::ParseSess::new();
|
2015-03-28 21:58:51 +00:00
|
|
|
let crate_ast = panictry!(string_to_parser(&ps, crate_str).parse_crate_mod());
|
2013-06-25 18:40:51 +00:00
|
|
|
// the cfg argument actually does matter, here...
|
2016-06-11 01:37:24 +00:00
|
|
|
let mut loader = DummyMacroLoader;
|
2016-08-04 00:55:05 +00:00
|
|
|
let mut ecx = ExtCtxt::new(&ps, vec![], test_ecfg(), &mut loader);
|
|
|
|
expand_crate(&mut ecx, vec![], crate_ast)
|
2013-07-09 23:00:41 +00:00
|
|
|
}
|
|
|
|
|
2013-07-09 22:10:16 +00:00
|
|
|
#[test] fn macro_tokens_should_match(){
|
2014-05-07 23:33:43 +00:00
|
|
|
expand_crate_str(
|
2014-11-14 17:18:10 +00:00
|
|
|
"macro_rules! m((a)=>(13)) ;fn main(){m!(a);}".to_string());
|
2013-07-09 22:10:16 +00:00
|
|
|
}
|
|
|
|
|
2014-07-08 00:43:09 +00:00
|
|
|
// should be able to use a bound identifier as a literal in a macro definition:
|
|
|
|
#[test] fn self_macro_parsing(){
|
|
|
|
expand_crate_str(
|
2015-01-17 23:55:21 +00:00
|
|
|
"macro_rules! foo ((zz) => (287;));
|
|
|
|
fn f(zz: i32) {foo!(zz);}".to_string()
|
2014-07-08 00:43:09 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2013-11-12 01:35:25 +00:00
|
|
|
// create a really evil test case where a $x appears inside a binding of $x
|
2014-07-03 01:27:07 +00:00
|
|
|
// but *shouldn't* bind because it was inserted by a different macro....
|
2013-11-12 01:35:25 +00:00
|
|
|
// can't write this test case until we have macro-generating macros.
|
2013-02-26 18:15:29 +00:00
|
|
|
}
|