2014-02-24 14:47:19 -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.
|
|
|
|
|
2016-07-16 14:11:28 -05:00
|
|
|
//! Machinery for hygienic macros, inspired by the MTWT[1] paper.
|
2014-02-24 14:47:19 -06:00
|
|
|
//!
|
2017-12-31 10:17:01 -06:00
|
|
|
//! [1] Matthew Flatt, Ryan Culpepper, David Darais, and Robert Bruce Findler. 2012.
|
|
|
|
//! *Macros that work together: Compile-time bindings, partial expansion,
|
2014-02-24 14:47:19 -06:00
|
|
|
//! and definition contexts*. J. Funct. Program. 22, 2 (March 2012), 181-216.
|
2017-12-31 10:17:01 -06:00
|
|
|
//! DOI=10.1017/S0956796812000093 <http://dx.doi.org/10.1017/S0956796812000093>
|
2014-02-24 14:47:19 -06:00
|
|
|
|
2017-03-16 23:04:41 -05:00
|
|
|
use Span;
|
2017-03-24 18:03:15 -05:00
|
|
|
use symbol::{Ident, Symbol};
|
2017-03-16 23:04:41 -05:00
|
|
|
|
|
|
|
use serialize::{Encodable, Decodable, Encoder, Decoder};
|
2014-02-24 14:47:19 -06:00
|
|
|
use std::cell::RefCell;
|
2014-05-29 21:03:06 -05:00
|
|
|
use std::collections::HashMap;
|
2016-06-22 03:03:42 -05:00
|
|
|
use std::fmt;
|
2014-02-24 14:47:19 -06:00
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
/// A SyntaxContext represents a chain of macro expansions (represented by marks).
|
2017-03-22 03:39:51 -05:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Default, PartialOrd, Ord, Hash)]
|
2017-09-16 13:43:05 -05:00
|
|
|
pub struct SyntaxContext(pub(super) u32);
|
2014-02-24 14:47:19 -06:00
|
|
|
|
2017-12-12 03:14:45 -06:00
|
|
|
#[derive(Copy, Clone)]
|
2016-06-22 03:03:42 -05:00
|
|
|
pub struct SyntaxContextData {
|
|
|
|
pub outer_mark: Mark,
|
|
|
|
pub prev_ctxt: SyntaxContext,
|
2017-03-22 03:39:51 -05:00
|
|
|
pub modern: SyntaxContext,
|
2014-02-24 14:47:19 -06:00
|
|
|
}
|
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
/// A mark is a unique id associated with a macro expansion.
|
2017-12-12 03:14:45 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Hash, Debug, RustcEncodable, RustcDecodable)]
|
2016-06-22 03:03:42 -05:00
|
|
|
pub struct Mark(u32);
|
2014-02-24 14:47:19 -06:00
|
|
|
|
2017-03-22 03:39:51 -05:00
|
|
|
struct MarkData {
|
|
|
|
parent: Mark,
|
2017-12-12 03:14:45 -06:00
|
|
|
kind: MarkKind,
|
2017-03-22 03:39:51 -05:00
|
|
|
expn_info: Option<ExpnInfo>,
|
|
|
|
}
|
|
|
|
|
2017-12-12 03:14:45 -06:00
|
|
|
#[derive(Copy, Clone, PartialEq, Eq)]
|
|
|
|
pub enum MarkKind {
|
|
|
|
Modern,
|
|
|
|
Builtin,
|
|
|
|
Legacy,
|
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
impl Mark {
|
2017-03-22 03:39:51 -05:00
|
|
|
pub fn fresh(parent: Mark) -> Self {
|
2016-06-22 03:03:42 -05:00
|
|
|
HygieneData::with(|data| {
|
2017-12-12 03:14:45 -06:00
|
|
|
data.marks.push(MarkData { parent: parent, kind: MarkKind::Legacy, expn_info: None });
|
2017-03-16 23:04:41 -05:00
|
|
|
Mark(data.marks.len() as u32 - 1)
|
2016-06-22 03:03:42 -05:00
|
|
|
})
|
2016-06-20 05:28:32 -05:00
|
|
|
}
|
2016-09-02 04:12:47 -05:00
|
|
|
|
2016-09-07 18:21:59 -05:00
|
|
|
/// The mark of the theoretical expansion that generates freshly parsed, unexpanded AST.
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2016-09-07 18:21:59 -05:00
|
|
|
pub fn root() -> Self {
|
|
|
|
Mark(0)
|
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2016-12-01 16:49:32 -06:00
|
|
|
pub fn as_u32(self) -> u32 {
|
2016-09-02 04:12:47 -05:00
|
|
|
self.0
|
|
|
|
}
|
2017-03-16 05:23:33 -05:00
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-03-16 05:23:33 -05:00
|
|
|
pub fn from_u32(raw: u32) -> Mark {
|
|
|
|
Mark(raw)
|
|
|
|
}
|
2017-03-16 23:04:41 -05:00
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub fn expn_info(self) -> Option<ExpnInfo> {
|
2017-03-22 03:39:51 -05:00
|
|
|
HygieneData::with(|data| data.marks[self.0 as usize].expn_info.clone())
|
2017-03-16 23:04:41 -05:00
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub fn set_expn_info(self, info: ExpnInfo) {
|
2017-03-22 03:39:51 -05:00
|
|
|
HygieneData::with(|data| data.marks[self.0 as usize].expn_info = Some(info))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn modern(mut self) -> Mark {
|
|
|
|
HygieneData::with(|data| {
|
|
|
|
loop {
|
2017-12-12 03:14:45 -06:00
|
|
|
if self == Mark::root() || data.marks[self.0 as usize].kind == MarkKind::Modern {
|
2017-03-22 03:39:51 -05:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
self = data.marks[self.0 as usize].parent;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-12-12 03:14:45 -06:00
|
|
|
pub fn kind(self) -> MarkKind {
|
|
|
|
HygieneData::with(|data| data.marks[self.0 as usize].kind)
|
2017-03-25 21:11:30 -05:00
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-12-12 03:14:45 -06:00
|
|
|
pub fn set_kind(self, kind: MarkKind) {
|
|
|
|
HygieneData::with(|data| data.marks[self.0 as usize].kind = kind)
|
2017-03-22 03:39:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_descendant_of(mut self, ancestor: Mark) -> bool {
|
|
|
|
HygieneData::with(|data| {
|
|
|
|
while self != ancestor {
|
|
|
|
if self == Mark::root() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
self = data.marks[self.0 as usize].parent;
|
|
|
|
}
|
|
|
|
true
|
|
|
|
})
|
2017-03-16 23:04:41 -05:00
|
|
|
}
|
2014-02-24 14:47:19 -06:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
struct HygieneData {
|
2017-03-22 03:39:51 -05:00
|
|
|
marks: Vec<MarkData>,
|
2016-06-22 03:03:42 -05:00
|
|
|
syntax_contexts: Vec<SyntaxContextData>,
|
|
|
|
markings: HashMap<(SyntaxContext, Mark), SyntaxContext>,
|
2017-03-25 21:11:30 -05:00
|
|
|
gensym_to_ctxt: HashMap<Symbol, SyntaxContext>,
|
2014-02-24 14:47:19 -06:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
impl HygieneData {
|
|
|
|
fn new() -> Self {
|
|
|
|
HygieneData {
|
2017-12-12 03:14:45 -06:00
|
|
|
marks: vec![MarkData {
|
|
|
|
parent: Mark::root(),
|
|
|
|
kind: MarkKind::Builtin,
|
|
|
|
expn_info: None,
|
|
|
|
}],
|
|
|
|
syntax_contexts: vec![SyntaxContextData {
|
|
|
|
outer_mark: Mark::root(),
|
|
|
|
prev_ctxt: SyntaxContext(0),
|
|
|
|
modern: SyntaxContext(0),
|
|
|
|
}],
|
2016-06-22 03:03:42 -05:00
|
|
|
markings: HashMap::new(),
|
2017-03-25 21:11:30 -05:00
|
|
|
gensym_to_ctxt: HashMap::new(),
|
2016-06-22 03:03:42 -05:00
|
|
|
}
|
2014-02-24 14:47:19 -06:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
fn with<T, F: FnOnce(&mut HygieneData) -> T>(f: F) -> T {
|
|
|
|
thread_local! {
|
|
|
|
static HYGIENE_DATA: RefCell<HygieneData> = RefCell::new(HygieneData::new());
|
|
|
|
}
|
|
|
|
HYGIENE_DATA.with(|data| f(&mut *data.borrow_mut()))
|
|
|
|
}
|
2014-03-08 16:18:58 -06:00
|
|
|
}
|
2014-02-24 14:47:19 -06:00
|
|
|
|
2017-03-16 23:04:41 -05:00
|
|
|
pub fn clear_markings() {
|
|
|
|
HygieneData::with(|data| data.markings = HashMap::new());
|
2014-11-28 22:56:09 -06:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
impl SyntaxContext {
|
|
|
|
pub const fn empty() -> Self {
|
|
|
|
SyntaxContext(0)
|
|
|
|
}
|
|
|
|
|
2017-11-22 06:41:27 -06:00
|
|
|
// Allocate a new SyntaxContext with the given ExpnInfo. This is used when
|
|
|
|
// deserializing Spans from the incr. comp. cache.
|
|
|
|
// FIXME(mw): This method does not restore MarkData::parent or
|
|
|
|
// SyntaxContextData::prev_ctxt or SyntaxContextData::modern. These things
|
|
|
|
// don't seem to be used after HIR lowering, so everything should be fine
|
|
|
|
// as long as incremental compilation does not kick in before that.
|
|
|
|
pub fn allocate_directly(expansion_info: ExpnInfo) -> Self {
|
|
|
|
HygieneData::with(|data| {
|
|
|
|
data.marks.push(MarkData {
|
|
|
|
parent: Mark::root(),
|
2017-12-12 03:14:45 -06:00
|
|
|
kind: MarkKind::Legacy,
|
2017-11-22 06:41:27 -06:00
|
|
|
expn_info: Some(expansion_info)
|
|
|
|
});
|
|
|
|
|
|
|
|
let mark = Mark(data.marks.len() as u32 - 1);
|
|
|
|
|
|
|
|
data.syntax_contexts.push(SyntaxContextData {
|
|
|
|
outer_mark: mark,
|
|
|
|
prev_ctxt: SyntaxContext::empty(),
|
|
|
|
modern: SyntaxContext::empty(),
|
|
|
|
});
|
|
|
|
SyntaxContext(data.syntax_contexts.len() as u32 - 1)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
/// Extend a syntax context with a given mark
|
|
|
|
pub fn apply_mark(self, mark: Mark) -> SyntaxContext {
|
2017-11-29 03:05:31 -06:00
|
|
|
if mark.kind() == MarkKind::Modern {
|
|
|
|
return self.apply_mark_internal(mark);
|
|
|
|
}
|
|
|
|
|
|
|
|
let call_site_ctxt =
|
|
|
|
mark.expn_info().map_or(SyntaxContext::empty(), |info| info.call_site.ctxt()).modern();
|
|
|
|
if call_site_ctxt == SyntaxContext::empty() {
|
|
|
|
return self.apply_mark_internal(mark);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, `mark` is a macros 1.0 definition and the call site is in a
|
|
|
|
// macros 2.0 expansion, i.e. a macros 1.0 invocation is in a macros 2.0 definition.
|
|
|
|
//
|
|
|
|
// In this case, the tokens from the macros 1.0 definition inherit the hygiene
|
|
|
|
// at their invocation. That is, we pretend that the macros 1.0 definition
|
|
|
|
// was defined at its invocation (i.e. inside the macros 2.0 definition)
|
|
|
|
// so that the macros 2.0 definition remains hygienic.
|
|
|
|
//
|
|
|
|
// See the example at `test/run-pass/hygiene/legacy_interaction.rs`.
|
|
|
|
let mut ctxt = call_site_ctxt;
|
|
|
|
for mark in self.marks() {
|
|
|
|
ctxt = ctxt.apply_mark_internal(mark);
|
|
|
|
}
|
|
|
|
ctxt.apply_mark_internal(mark)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn apply_mark_internal(self, mark: Mark) -> SyntaxContext {
|
2016-06-22 03:03:42 -05:00
|
|
|
HygieneData::with(|data| {
|
|
|
|
let syntax_contexts = &mut data.syntax_contexts;
|
2017-03-28 00:32:43 -05:00
|
|
|
let mut modern = syntax_contexts[self.0 as usize].modern;
|
2017-12-12 03:14:45 -06:00
|
|
|
if data.marks[mark.0 as usize].kind == MarkKind::Modern {
|
2017-03-28 00:32:43 -05:00
|
|
|
modern = *data.markings.entry((modern, mark)).or_insert_with(|| {
|
|
|
|
let len = syntax_contexts.len() as u32;
|
2017-03-22 03:39:51 -05:00
|
|
|
syntax_contexts.push(SyntaxContextData {
|
|
|
|
outer_mark: mark,
|
2017-03-28 00:32:43 -05:00
|
|
|
prev_ctxt: modern,
|
|
|
|
modern: SyntaxContext(len),
|
2017-03-22 03:39:51 -05:00
|
|
|
});
|
2017-03-28 00:32:43 -05:00
|
|
|
SyntaxContext(len)
|
|
|
|
});
|
|
|
|
}
|
2017-03-22 03:39:51 -05:00
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
*data.markings.entry((self, mark)).or_insert_with(|| {
|
|
|
|
syntax_contexts.push(SyntaxContextData {
|
|
|
|
outer_mark: mark,
|
|
|
|
prev_ctxt: self,
|
2017-08-07 00:54:09 -05:00
|
|
|
modern,
|
2016-06-22 03:03:42 -05:00
|
|
|
});
|
|
|
|
SyntaxContext(syntax_contexts.len() as u32 - 1)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
2017-03-16 23:04:41 -05:00
|
|
|
|
2017-03-22 03:39:51 -05:00
|
|
|
pub fn remove_mark(&mut self) -> Mark {
|
|
|
|
HygieneData::with(|data| {
|
|
|
|
let outer_mark = data.syntax_contexts[self.0 as usize].outer_mark;
|
|
|
|
*self = data.syntax_contexts[self.0 as usize].prev_ctxt;
|
|
|
|
outer_mark
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-11-29 03:05:31 -06:00
|
|
|
pub fn marks(mut self) -> Vec<Mark> {
|
|
|
|
HygieneData::with(|data| {
|
|
|
|
let mut marks = Vec::new();
|
|
|
|
while self != SyntaxContext::empty() {
|
|
|
|
marks.push(data.syntax_contexts[self.0 as usize].outer_mark);
|
|
|
|
self = data.syntax_contexts[self.0 as usize].prev_ctxt;
|
|
|
|
}
|
|
|
|
marks.reverse();
|
|
|
|
marks
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-03-22 03:39:51 -05:00
|
|
|
/// Adjust this context for resolution in a scope created by the given expansion.
|
|
|
|
/// For example, consider the following three resolutions of `f`:
|
2017-12-31 10:17:01 -06:00
|
|
|
///
|
2017-03-22 03:39:51 -05:00
|
|
|
/// ```rust
|
|
|
|
/// mod foo { pub fn f() {} } // `f`'s `SyntaxContext` is empty.
|
|
|
|
/// m!(f);
|
|
|
|
/// macro m($f:ident) {
|
|
|
|
/// mod bar {
|
|
|
|
/// pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
|
|
|
|
/// pub fn $f() {} // `$f`'s `SyntaxContext` is empty.
|
|
|
|
/// }
|
|
|
|
/// foo::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
|
|
|
|
/// //^ Since `mod foo` is outside this expansion, `adjust` removes the mark from `f`,
|
|
|
|
/// //| and it resolves to `::foo::f`.
|
|
|
|
/// bar::f(); // `f`'s `SyntaxContext` has a single `Mark` from `m`
|
|
|
|
/// //^ Since `mod bar` not outside this expansion, `adjust` does not change `f`,
|
|
|
|
/// //| and it resolves to `::bar::f`.
|
|
|
|
/// bar::$f(); // `f`'s `SyntaxContext` is empty.
|
|
|
|
/// //^ Since `mod bar` is not outside this expansion, `adjust` does not change `$f`,
|
|
|
|
/// //| and it resolves to `::bar::$f`.
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// This returns the expansion whose definition scope we use to privacy check the resolution,
|
|
|
|
/// or `None` if we privacy check as usual (i.e. not w.r.t. a macro definition scope).
|
|
|
|
pub fn adjust(&mut self, expansion: Mark) -> Option<Mark> {
|
|
|
|
let mut scope = None;
|
|
|
|
while !expansion.is_descendant_of(self.outer()) {
|
|
|
|
scope = Some(self.remove_mark());
|
|
|
|
}
|
|
|
|
scope
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Adjust this context for resolution in a scope created by the given expansion
|
|
|
|
/// via a glob import with the given `SyntaxContext`.
|
2017-12-31 10:17:01 -06:00
|
|
|
/// For example:
|
|
|
|
///
|
2017-03-22 03:39:51 -05:00
|
|
|
/// ```rust
|
|
|
|
/// m!(f);
|
|
|
|
/// macro m($i:ident) {
|
|
|
|
/// mod foo {
|
|
|
|
/// pub fn f() {} // `f`'s `SyntaxContext` has a single `Mark` from `m`.
|
|
|
|
/// pub fn $i() {} // `$i`'s `SyntaxContext` is empty.
|
|
|
|
/// }
|
|
|
|
/// n(f);
|
|
|
|
/// macro n($j:ident) {
|
|
|
|
/// use foo::*;
|
|
|
|
/// f(); // `f`'s `SyntaxContext` has a mark from `m` and a mark from `n`
|
|
|
|
/// //^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::f`.
|
|
|
|
/// $i(); // `$i`'s `SyntaxContext` has a mark from `n`
|
|
|
|
/// //^ `glob_adjust` removes the mark from `n`, so this resolves to `foo::$i`.
|
|
|
|
/// $j(); // `$j`'s `SyntaxContext` has a mark from `m`
|
|
|
|
/// //^ This cannot be glob-adjusted, so this is a resolution error.
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// This returns `None` if the context cannot be glob-adjusted.
|
|
|
|
/// Otherwise, it returns the scope to use when privacy checking (see `adjust` for details).
|
|
|
|
pub fn glob_adjust(&mut self, expansion: Mark, mut glob_ctxt: SyntaxContext)
|
|
|
|
-> Option<Option<Mark>> {
|
|
|
|
let mut scope = None;
|
|
|
|
while !expansion.is_descendant_of(glob_ctxt.outer()) {
|
|
|
|
scope = Some(glob_ctxt.remove_mark());
|
|
|
|
if self.remove_mark() != scope.unwrap() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if self.adjust(expansion).is_some() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(scope)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Undo `glob_adjust` if possible:
|
2017-12-31 10:17:01 -06:00
|
|
|
///
|
2017-03-22 03:39:51 -05:00
|
|
|
/// ```rust
|
|
|
|
/// if let Some(privacy_checking_scope) = self.reverse_glob_adjust(expansion, glob_ctxt) {
|
|
|
|
/// assert!(self.glob_adjust(expansion, glob_ctxt) == Some(privacy_checking_scope));
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub fn reverse_glob_adjust(&mut self, expansion: Mark, mut glob_ctxt: SyntaxContext)
|
|
|
|
-> Option<Option<Mark>> {
|
|
|
|
if self.adjust(expansion).is_some() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut marks = Vec::new();
|
|
|
|
while !expansion.is_descendant_of(glob_ctxt.outer()) {
|
|
|
|
marks.push(glob_ctxt.remove_mark());
|
|
|
|
}
|
|
|
|
|
|
|
|
let scope = marks.last().cloned();
|
|
|
|
while let Some(mark) = marks.pop() {
|
|
|
|
*self = self.apply_mark(mark);
|
|
|
|
}
|
|
|
|
Some(scope)
|
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-03-22 03:39:51 -05:00
|
|
|
pub fn modern(self) -> SyntaxContext {
|
|
|
|
HygieneData::with(|data| data.syntax_contexts[self.0 as usize].modern)
|
|
|
|
}
|
|
|
|
|
2017-12-07 09:46:31 -06:00
|
|
|
#[inline]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub fn outer(self) -> Mark {
|
|
|
|
HygieneData::with(|data| data.syntax_contexts[self.0 as usize].outer_mark)
|
|
|
|
}
|
2014-02-24 14:47:19 -06:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:03:42 -05:00
|
|
|
impl fmt::Debug for SyntaxContext {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
write!(f, "#{}", self.0)
|
|
|
|
}
|
2016-06-25 22:32:45 -05:00
|
|
|
}
|
2017-03-16 23:04:41 -05:00
|
|
|
|
|
|
|
/// Extra information for tracking spans of macro and syntax sugar expansion
|
2017-11-22 06:41:27 -06:00
|
|
|
#[derive(Clone, Hash, Debug, RustcEncodable, RustcDecodable)]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub struct ExpnInfo {
|
|
|
|
/// The location of the actual macro invocation or syntax sugar , e.g.
|
|
|
|
/// `let x = foo!();` or `if let Some(y) = x {}`
|
|
|
|
///
|
|
|
|
/// This may recursively refer to other macro invocations, e.g. if
|
|
|
|
/// `foo!()` invoked `bar!()` internally, and there was an
|
|
|
|
/// expression inside `bar!`; the call_site of the expression in
|
|
|
|
/// the expansion would point to the `bar!` invocation; that
|
|
|
|
/// call_site span would have its own ExpnInfo, with the call_site
|
|
|
|
/// pointing to the `foo!` invocation.
|
|
|
|
pub call_site: Span,
|
|
|
|
/// Information about the expansion.
|
|
|
|
pub callee: NameAndSpan
|
|
|
|
}
|
|
|
|
|
2017-11-22 06:41:27 -06:00
|
|
|
#[derive(Clone, Hash, Debug, RustcEncodable, RustcDecodable)]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub struct NameAndSpan {
|
|
|
|
/// The format with which the macro was invoked.
|
|
|
|
pub format: ExpnFormat,
|
|
|
|
/// Whether the macro is allowed to use #[unstable]/feature-gated
|
|
|
|
/// features internally without forcing the whole crate to opt-in
|
|
|
|
/// to them.
|
|
|
|
pub allow_internal_unstable: bool,
|
2017-08-08 10:21:20 -05:00
|
|
|
/// Whether the macro is allowed to use `unsafe` internally
|
|
|
|
/// even if the user crate has `#![forbid(unsafe_code)]`.
|
|
|
|
pub allow_internal_unsafe: bool,
|
2017-03-16 23:04:41 -05:00
|
|
|
/// The span of the macro definition itself. The macro may not
|
|
|
|
/// have a sensible definition span (e.g. something defined
|
|
|
|
/// completely inside libsyntax) in which case this is None.
|
|
|
|
pub span: Option<Span>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NameAndSpan {
|
|
|
|
pub fn name(&self) -> Symbol {
|
|
|
|
match self.format {
|
|
|
|
ExpnFormat::MacroAttribute(s) |
|
2017-08-12 19:43:43 -05:00
|
|
|
ExpnFormat::MacroBang(s) => s,
|
|
|
|
ExpnFormat::CompilerDesugaring(ref kind) => kind.as_symbol(),
|
2017-03-16 23:04:41 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The source of expansion.
|
2017-11-22 06:41:27 -06:00
|
|
|
#[derive(Clone, Hash, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2017-03-16 23:04:41 -05:00
|
|
|
pub enum ExpnFormat {
|
|
|
|
/// e.g. #[derive(...)] <item>
|
|
|
|
MacroAttribute(Symbol),
|
|
|
|
/// e.g. `format!()`
|
|
|
|
MacroBang(Symbol),
|
|
|
|
/// Desugaring done by the compiler during HIR lowering.
|
2017-08-12 19:43:43 -05:00
|
|
|
CompilerDesugaring(CompilerDesugaringKind)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The kind of compiler desugaring.
|
2017-11-22 06:41:27 -06:00
|
|
|
#[derive(Clone, Hash, Debug, PartialEq, Eq, RustcEncodable, RustcDecodable)]
|
2017-08-12 19:43:43 -05:00
|
|
|
pub enum CompilerDesugaringKind {
|
|
|
|
BackArrow,
|
|
|
|
DotFill,
|
|
|
|
QuestionMark,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CompilerDesugaringKind {
|
|
|
|
pub fn as_symbol(&self) -> Symbol {
|
|
|
|
use CompilerDesugaringKind::*;
|
|
|
|
let s = match *self {
|
|
|
|
BackArrow => "<-",
|
|
|
|
DotFill => "...",
|
|
|
|
QuestionMark => "?",
|
|
|
|
};
|
|
|
|
Symbol::intern(s)
|
|
|
|
}
|
2017-03-16 23:04:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Encodable for SyntaxContext {
|
|
|
|
fn encode<E: Encoder>(&self, _: &mut E) -> Result<(), E::Error> {
|
|
|
|
Ok(()) // FIXME(jseyfried) intercrate hygiene
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Decodable for SyntaxContext {
|
|
|
|
fn decode<D: Decoder>(_: &mut D) -> Result<SyntaxContext, D::Error> {
|
|
|
|
Ok(SyntaxContext::empty()) // FIXME(jseyfried) intercrate hygiene
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 18:03:15 -05:00
|
|
|
|
|
|
|
impl Symbol {
|
|
|
|
pub fn from_ident(ident: Ident) -> Symbol {
|
|
|
|
HygieneData::with(|data| {
|
2017-03-25 21:11:30 -05:00
|
|
|
let gensym = ident.name.gensymed();
|
|
|
|
data.gensym_to_ctxt.insert(gensym, ident.ctxt);
|
|
|
|
gensym
|
2017-03-24 18:03:15 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_ident(self) -> Ident {
|
|
|
|
HygieneData::with(|data| {
|
2017-03-25 21:11:30 -05:00
|
|
|
match data.gensym_to_ctxt.get(&self) {
|
|
|
|
Some(&ctxt) => Ident { name: self.interned(), ctxt: ctxt },
|
|
|
|
None => Ident::with_empty_ctxt(self),
|
|
|
|
}
|
2017-03-24 18:03:15 -05:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|