Skip to content

Commit 1dec33b

Browse files
authored
Auto merge of #37321 - nrc:lib-proc-macro, r=@alexcrichton
Split up libproc_macro_plugin Separate the plugin code from non-plugin code to break a potential cycle in crates. This will allow us to merge the new libproc_macro_tokens into libproc_macro. r? @alexcrichton
2 parents 0743694 + 198215a commit 1dec33b

File tree

15 files changed

+143
-88
lines changed

15 files changed

+143
-88
lines changed

mk/crates.mk

+5-4
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ RUSTC_CRATES := rustc rustc_typeck rustc_mir rustc_borrowck rustc_resolve rustc_
6060
rustc_data_structures rustc_platform_intrinsics rustc_errors \
6161
rustc_plugin rustc_metadata rustc_passes rustc_save_analysis \
6262
rustc_const_eval rustc_const_math rustc_incremental proc_macro
63-
HOST_CRATES := syntax syntax_ext proc_macro_plugin syntax_pos $(RUSTC_CRATES) rustdoc fmt_macros \
64-
flate arena graphviz log serialize
63+
HOST_CRATES := syntax syntax_ext proc_macro_tokens proc_macro_plugin syntax_pos $(RUSTC_CRATES) \
64+
rustdoc fmt_macros flate arena graphviz log serialize
6565
TOOLS := compiletest rustdoc rustc rustbook error_index_generator
6666

6767
DEPS_core :=
@@ -102,8 +102,9 @@ DEPS_test := std getopts term native:rust_test_helpers
102102

103103
DEPS_syntax := std term serialize log arena libc rustc_bitflags rustc_unicode rustc_errors syntax_pos
104104
DEPS_syntax_ext := syntax syntax_pos rustc_errors fmt_macros proc_macro
105-
DEPS_proc_macro_plugin := syntax syntax_pos rustc_plugin log
106105
DEPS_syntax_pos := serialize
106+
DEPS_proc_macro_tokens := syntax syntax_pos log
107+
DEPS_proc_macro_plugin := syntax syntax_pos rustc_plugin log proc_macro_tokens
107108

108109
DEPS_rustc_const_math := std syntax log serialize
109110
DEPS_rustc_const_eval := rustc_const_math rustc syntax log serialize \
@@ -118,7 +119,7 @@ DEPS_rustc_data_structures := std log serialize libc
118119
DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_borrowck \
119120
rustc_typeck rustc_mir rustc_resolve log syntax serialize rustc_llvm \
120121
rustc_trans rustc_privacy rustc_lint rustc_plugin \
121-
rustc_metadata syntax_ext proc_macro_plugin \
122+
rustc_metadata syntax_ext \
122123
rustc_passes rustc_save_analysis rustc_const_eval \
123124
rustc_incremental syntax_pos rustc_errors proc_macro
124125
DEPS_rustc_errors := log libc serialize syntax_pos

src/Cargo.lock

+36-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/libproc_macro_plugin/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ log = { path = "../liblog" }
1212
rustc_plugin = { path = "../librustc_plugin" }
1313
syntax = { path = "../libsyntax" }
1414
syntax_pos = { path = "../libsyntax_pos" }
15+
proc_macro_tokens = { path = "../libproc_macro_tokens" }

src/libproc_macro_plugin/lib.rs

+6-36
Original file line numberDiff line numberDiff line change
@@ -13,43 +13,14 @@
1313
//! A library for procedural macro writers.
1414
//!
1515
//! ## Usage
16-
//! This package provides the `qquote!` macro for syntax creation, and the prelude
17-
//! (at libproc_macro::prelude) provides a number of operations:
18-
//! - `concat`, for concatenating two TokenStreams.
19-
//! - `ident_eq`, for checking if two identifiers are equal regardless of syntax context.
20-
//! - `str_to_token_ident`, for converting an `&str` into a Token.
21-
//! - `keyword_to_token_delim`, for converting a `parse::token::keywords::Keyword` into a
22-
//! Token.
23-
//! - `build_delimited`, for creating a new TokenStream from an existing one and a delimiter
24-
//! by wrapping the TokenStream in the delimiter.
25-
//! - `build_bracket_delimited`, `build_brace_delimited`, and `build_paren_delimited`, for
26-
//! easing the above.
27-
//! - `build_empty_args`, which returns a TokenStream containing `()`.
28-
//! - `lex`, which takes an `&str` and returns the TokenStream it represents.
29-
//!
30-
//! The `qquote!` macro also imports `syntax::ext::proc_macro_shim::prelude::*`, so you
16+
//! This crate provides the `qquote!` macro for syntax creation.
17+
//!
18+
//! The `qquote!` macro imports `syntax::ext::proc_macro_shim::prelude::*`, so you
3119
//! will need to `extern crate syntax` for usage. (This is a temporary solution until more
32-
//! of the external API in libproc_macro is stabilized to support the token construction
20+
//! of the external API in libproc_macro_tokens is stabilized to support the token construction
3321
//! operations that the qausiquoter relies on.) The shim file also provides additional
3422
//! operations, such as `build_block_emitter` (as used in the `cond` example below).
3523
//!
36-
//! ## TokenStreams
37-
//!
38-
//! TokenStreams serve as the basis of the macro system. They are, in essence, vectors of
39-
//! TokenTrees, where indexing treats delimited values as a single term. That is, the term
40-
//! `even(a+c) && even(b)` will be indexibly encoded as `even | (a+c) | even | (b)` where,
41-
//! in reality, `(a+c)` is actually a decorated pointer to `a | + | c`.
42-
//!
43-
//! If a user has a TokenStream that is a single, delimited value, they can use
44-
//! `maybe_delimited` to destruct it and receive the internal vector as a new TokenStream
45-
//! as:
46-
//! ```
47-
//! `(a+c)`.maybe_delimited() ~> Some(a | + | c)`
48-
//! ```
49-
//!
50-
//! Check the TokenStream documentation for more information; the structure also provides
51-
//! cheap concatenation and slicing.
52-
//!
5324
//! ## Quasiquotation
5425
//!
5526
//! The quasiquoter creates output that, when run, constructs the tokenstream specified as
@@ -118,12 +89,11 @@
11889
extern crate rustc_plugin;
11990
extern crate syntax;
12091
extern crate syntax_pos;
92+
extern crate proc_macro_tokens;
12193
#[macro_use] extern crate log;
12294

12395
mod qquote;
124-
pub mod build;
125-
pub mod parse;
126-
pub mod prelude;
96+
12797
use qquote::qquote;
12898

12999
use rustc_plugin::Registry;

src/libproc_macro_plugin/qquote.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,9 @@
2424
//! TokenStream that resembles the output syntax.
2525
//!
2626
27-
extern crate rustc_plugin;
28-
extern crate syntax;
29-
extern crate syntax_pos;
27+
use proc_macro_tokens::build::*;
28+
use proc_macro_tokens::parse::lex;
3029

31-
use build::*;
32-
use parse::lex;
3330
use qquote::int_build::*;
3431

3532
use syntax::ast::Ident;
@@ -51,7 +48,7 @@ pub fn qquote<'cx>(cx: &'cx mut ExtCtxt, sp: Span, tts: &[TokenTree])
5148
let output = qquoter(cx, TokenStream::from_tts(tts.clone().to_owned()));
5249
debug!("\nQQ out: {}\n", pprust::tts_to_string(&output.to_tts()[..]));
5350
let imports = concat(lex("use syntax::ext::proc_macro_shim::prelude::*;"),
54-
lex("use proc_macro_plugin::prelude::*;"));
51+
lex("use proc_macro_tokens::prelude::*;"));
5552
build_block_emitter(cx, sp, build_brace_delimited(concat(imports, output)))
5653
}
5754

@@ -219,7 +216,7 @@ fn convert_complex_tts<'cx>(cx: &'cx mut ExtCtxt, tts: Vec<QTT>) -> (Bindings, T
219216

220217
let sep = build_delim_tok(qdl.delim);
221218

222-
pushes.push(build_mod_call(vec![str_to_ident("proc_macro_plugin"),
219+
pushes.push(build_mod_call(vec![str_to_ident("proc_macro_tokens"),
223220
str_to_ident("build"),
224221
str_to_ident("build_delimited")],
225222
concat(from_tokens(vec![Token::Ident(new_id)]),
@@ -264,11 +261,8 @@ fn is_qquote(id: Ident) -> bool {
264261
}
265262

266263
mod int_build {
267-
extern crate syntax;
268-
extern crate syntax_pos;
269-
270-
use parse::*;
271-
use build::*;
264+
use proc_macro_tokens::build::*;
265+
use proc_macro_tokens::parse::*;
272266

273267
use syntax::ast::{self, Ident};
274268
use syntax::codemap::{DUMMY_SP};

src/libproc_macro_tokens/Cargo.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
authors = ["The Rust Project Developers"]
3+
name = "proc_macro_tokens"
4+
version = "0.0.0"
5+
6+
[lib]
7+
path = "lib.rs"
8+
crate-type = ["dylib"]
9+
10+
[dependencies]
11+
syntax = { path = "../libsyntax" }
12+
syntax_pos = { path = "../libsyntax_pos" }
13+
log = { path = "../liblog" }
File renamed without changes.

0 commit comments

Comments
 (0)