2019-02-08 13:53:55 +00:00
|
|
|
//! The main parser interface.
|
2012-11-29 00:20:41 +00:00
|
|
|
|
2019-12-06 13:09:03 +00:00
|
|
|
#![feature(bool_to_option)]
|
2019-10-15 20:48:13 +00:00
|
|
|
#![feature(crate_visibility_modifier)]
|
2020-03-07 16:16:29 +00:00
|
|
|
#![feature(bindings_after_at)]
|
2020-03-08 12:36:20 +00:00
|
|
|
#![feature(try_blocks)]
|
2020-03-29 15:12:48 +00:00
|
|
|
#![feature(or_patterns)]
|
2019-10-15 20:48:13 +00:00
|
|
|
|
2020-04-27 17:56:11 +00:00
|
|
|
use rustc_ast as ast;
|
2020-06-24 05:52:48 +00:00
|
|
|
use rustc_ast::token::{self, DelimToken, Nonterminal, Token, TokenKind};
|
2020-09-03 15:21:53 +00:00
|
|
|
use rustc_ast::tokenstream::{self, Spacing, TokenStream, TokenTree};
|
2020-01-11 16:02:46 +00:00
|
|
|
use rustc_ast_pretty::pprust;
|
2020-01-11 14:03:15 +00:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
|
|
|
use rustc_errors::{Diagnostic, FatalError, Level, PResult};
|
|
|
|
use rustc_session::parse::ParseSess;
|
2020-08-01 11:59:02 +00:00
|
|
|
use rustc_span::{symbol::kw, FileName, SourceFile, Span, DUMMY_SP};
|
2019-02-06 17:33:01 +00:00
|
|
|
|
2020-08-01 11:59:02 +00:00
|
|
|
use smallvec::SmallVec;
|
|
|
|
use std::mem;
|
2020-03-08 21:10:37 +00:00
|
|
|
use std::path::Path;
|
2013-10-14 01:48:47 +00:00
|
|
|
use std::str;
|
2012-12-23 22:41:37 +00:00
|
|
|
|
2020-08-14 06:05:01 +00:00
|
|
|
use tracing::{debug, info};
|
2019-10-09 00:34:22 +00:00
|
|
|
|
2019-10-10 08:26:10 +00:00
|
|
|
pub const MACRO_ARGUMENTS: Option<&'static str> = Some("macro arguments");
|
2015-03-28 21:58:51 +00:00
|
|
|
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use]
|
2013-01-09 03:37:25 +00:00
|
|
|
pub mod parser;
|
2019-12-22 22:42:04 +00:00
|
|
|
use parser::{emit_unclosed_delims, make_unclosed_delims_error, Parser};
|
2014-12-19 04:09:57 +00:00
|
|
|
pub mod lexer;
|
2019-10-11 19:00:09 +00:00
|
|
|
pub mod validate_attr;
|
2019-04-25 08:48:25 +00:00
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
// A bunch of utility functions of the form `parse_<thing>_from_<source>`
|
2013-02-11 21:36:24 +00:00
|
|
|
// where <thing> includes crate, expr, item, stmt, tts, and one that
|
|
|
|
// uses a HOF to parse anything, and <source> includes file and
|
2019-09-06 02:56:45 +00:00
|
|
|
// `source_str`.
|
2013-02-11 21:36:24 +00:00
|
|
|
|
2019-10-11 16:52:09 +00:00
|
|
|
/// A variant of 'panictry!' that works on a Vec<Diagnostic> instead of a single DiagnosticBuilder.
|
|
|
|
macro_rules! panictry_buffer {
|
2019-12-22 22:42:04 +00:00
|
|
|
($handler:expr, $e:expr) => {{
|
2019-12-05 05:38:06 +00:00
|
|
|
use rustc_errors::FatalError;
|
2019-12-22 22:42:04 +00:00
|
|
|
use std::result::Result::{Err, Ok};
|
2019-10-11 16:52:09 +00:00
|
|
|
match $e {
|
|
|
|
Ok(e) => e,
|
|
|
|
Err(errs) => {
|
|
|
|
for e in errs {
|
|
|
|
$handler.emit_diagnostic(&e);
|
|
|
|
}
|
|
|
|
FatalError.raise()
|
|
|
|
}
|
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
}};
|
2019-10-11 16:52:09 +00:00
|
|
|
}
|
|
|
|
|
2016-10-27 06:36:56 +00:00
|
|
|
pub fn parse_crate_from_file<'a>(input: &Path, sess: &'a ParseSess) -> PResult<'a, ast::Crate> {
|
2020-03-21 22:10:10 +00:00
|
|
|
let mut parser = new_parser_from_file(sess, input, None);
|
2016-02-13 17:05:16 +00:00
|
|
|
parser.parse_crate_mod()
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn parse_crate_attrs_from_file<'a>(
|
|
|
|
input: &Path,
|
|
|
|
sess: &'a ParseSess,
|
|
|
|
) -> PResult<'a, Vec<ast::Attribute>> {
|
2020-03-21 22:10:10 +00:00
|
|
|
let mut parser = new_parser_from_file(sess, input, None);
|
2016-02-13 17:05:16 +00:00
|
|
|
parser.parse_inner_attributes()
|
2013-12-19 20:23:39 +00:00
|
|
|
}
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn parse_crate_from_source_str(
|
|
|
|
name: FileName,
|
|
|
|
source: String,
|
|
|
|
sess: &ParseSess,
|
|
|
|
) -> PResult<'_, ast::Crate> {
|
2016-10-27 06:36:56 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_crate_mod()
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn parse_crate_attrs_from_source_str(
|
|
|
|
name: FileName,
|
|
|
|
source: String,
|
|
|
|
sess: &ParseSess,
|
|
|
|
) -> PResult<'_, Vec<ast::Attribute>> {
|
2016-10-27 06:36:56 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_inner_attributes()
|
2013-12-19 20:23:39 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn parse_stream_from_source_str(
|
|
|
|
name: FileName,
|
|
|
|
source: String,
|
|
|
|
sess: &ParseSess,
|
|
|
|
override_span: Option<Span>,
|
2019-03-04 20:59:43 +00:00
|
|
|
) -> TokenStream {
|
2019-12-22 22:42:04 +00:00
|
|
|
let (stream, mut errors) =
|
|
|
|
source_file_to_stream(sess, sess.source_map().new_source_file(name, source), override_span);
|
2019-10-29 00:44:20 +00:00
|
|
|
emit_unclosed_delims(&mut errors, &sess);
|
2019-03-04 20:59:43 +00:00
|
|
|
stream
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser from a source string.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn new_parser_from_source_str(sess: &ParseSess, name: FileName, source: String) -> Parser<'_> {
|
2018-11-01 21:01:38 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic, maybe_new_parser_from_source_str(sess, name, source))
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser from a source string. Returns any buffered errors from lexing the initial
|
2018-11-01 16:57:29 +00:00
|
|
|
/// token stream.
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn maybe_new_parser_from_source_str(
|
|
|
|
sess: &ParseSess,
|
|
|
|
name: FileName,
|
|
|
|
source: String,
|
|
|
|
) -> Result<Parser<'_>, Vec<Diagnostic>> {
|
2020-03-08 12:36:20 +00:00
|
|
|
maybe_source_file_to_parser(sess, sess.source_map().new_source_file(name, source))
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Creates a new parser, handling errors as appropriate if the file doesn't exist.
|
2020-09-10 09:56:11 +00:00
|
|
|
/// If a span is given, that is used on an error as the source of the problem.
|
2020-03-21 22:10:10 +00:00
|
|
|
pub fn new_parser_from_file<'a>(sess: &'a ParseSess, path: &Path, sp: Option<Span>) -> Parser<'a> {
|
|
|
|
source_file_to_parser(sess, file_to_source_file(sess, path, sp))
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Creates a new parser, returning buffered diagnostics if the file doesn't exist,
|
|
|
|
/// or from lexing the initial token stream.
|
2019-12-22 22:42:04 +00:00
|
|
|
pub fn maybe_new_parser_from_file<'a>(
|
|
|
|
sess: &'a ParseSess,
|
|
|
|
path: &Path,
|
|
|
|
) -> Result<Parser<'a>, Vec<Diagnostic>> {
|
2018-12-09 21:53:00 +00:00
|
|
|
let file = try_file_to_source_file(sess, path, None).map_err(|db| vec![db])?;
|
|
|
|
maybe_source_file_to_parser(sess, file)
|
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Given a `source_file` and config, returns a parser.
|
2019-02-06 17:33:01 +00:00
|
|
|
fn source_file_to_parser(sess: &ParseSess, source_file: Lrc<SourceFile>) -> Parser<'_> {
|
2019-12-22 22:42:04 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic, maybe_source_file_to_parser(sess, source_file))
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Given a `source_file` and config, return a parser. Returns any buffered errors from lexing the
|
2018-11-01 16:57:29 +00:00
|
|
|
/// initial token stream.
|
2019-01-28 05:04:50 +00:00
|
|
|
fn maybe_source_file_to_parser(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
) -> Result<Parser<'_>, Vec<Diagnostic>> {
|
2018-08-18 10:13:56 +00:00
|
|
|
let end_pos = source_file.end_pos;
|
2019-01-28 05:04:50 +00:00
|
|
|
let (stream, unclosed_delims) = maybe_file_to_stream(sess, source_file, None)?;
|
2019-05-22 00:47:23 +00:00
|
|
|
let mut parser = stream_to_parser(sess, stream, None);
|
2019-01-28 05:04:50 +00:00
|
|
|
parser.unclosed_delims = unclosed_delims;
|
2020-02-16 20:19:51 +00:00
|
|
|
if parser.token == token::Eof {
|
2020-03-07 13:34:29 +00:00
|
|
|
parser.token.span = Span::new(end_pos, end_pos, parser.token.span.ctxt());
|
2015-07-06 02:13:19 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 16:57:29 +00:00
|
|
|
Ok(parser)
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
// Must preserve old name for now, because `quote!` from the *existing*
|
|
|
|
// compiler expands into it.
|
2019-02-06 17:33:01 +00:00
|
|
|
pub fn new_parser_from_tts(sess: &ParseSess, tts: Vec<TokenTree>) -> Parser<'_> {
|
2019-05-22 05:17:53 +00:00
|
|
|
stream_to_parser(sess, tts.into_iter().collect(), crate::MACRO_ARGUMENTS)
|
2016-07-14 16:52:43 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
// Base abstractions
|
2013-04-23 17:57:41 +00:00
|
|
|
|
2018-12-09 21:53:00 +00:00
|
|
|
/// Given a session and a path and an optional span (for error reporting),
|
|
|
|
/// add the path to the session's source_map and return the new source_file or
|
|
|
|
/// error when a file can't be read.
|
2019-12-22 22:42:04 +00:00
|
|
|
fn try_file_to_source_file(
|
|
|
|
sess: &ParseSess,
|
|
|
|
path: &Path,
|
|
|
|
spanopt: Option<Span>,
|
|
|
|
) -> Result<Lrc<SourceFile>, Diagnostic> {
|
|
|
|
sess.source_map().load_file(path).map_err(|e| {
|
2018-12-09 21:53:00 +00:00
|
|
|
let msg = format!("couldn't read {}: {}", path.display(), e);
|
|
|
|
let mut diag = Diagnostic::new(Level::Fatal, &msg);
|
|
|
|
if let Some(sp) = spanopt {
|
|
|
|
diag.set_span(sp);
|
|
|
|
}
|
|
|
|
diag
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-04-23 17:57:41 +00:00
|
|
|
/// Given a session and a path and an optional span (for error reporting),
|
2019-09-06 02:56:45 +00:00
|
|
|
/// adds the path to the session's `source_map` and returns the new `source_file`.
|
2019-12-22 22:42:04 +00:00
|
|
|
fn file_to_source_file(sess: &ParseSess, path: &Path, spanopt: Option<Span>) -> Lrc<SourceFile> {
|
2018-12-09 21:53:00 +00:00
|
|
|
match try_file_to_source_file(sess, path, spanopt) {
|
2018-08-18 10:13:56 +00:00
|
|
|
Ok(source_file) => source_file,
|
2018-12-09 21:53:00 +00:00
|
|
|
Err(d) => {
|
2019-09-07 14:20:56 +00:00
|
|
|
sess.span_diagnostic.emit_diagnostic(&d);
|
2018-12-09 21:53:00 +00:00
|
|
|
FatalError.raise();
|
2014-05-16 17:45:16 +00:00
|
|
|
}
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Given a `source_file`, produces a sequence of token trees.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn source_file_to_stream(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
override_span: Option<Span>,
|
|
|
|
) -> (TokenStream, Vec<lexer::UnmatchedBrace>) {
|
2018-11-01 21:01:38 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic, maybe_file_to_stream(sess, source_file, override_span))
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Given a source file, produces a sequence of token trees. Returns any buffered errors from
|
2019-05-12 16:55:16 +00:00
|
|
|
/// parsing the token stream.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn maybe_file_to_stream(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
override_span: Option<Span>,
|
|
|
|
) -> Result<(TokenStream, Vec<lexer::UnmatchedBrace>), Vec<Diagnostic>> {
|
2020-09-03 13:37:03 +00:00
|
|
|
let src = source_file.src.as_ref().unwrap_or_else(|| {
|
|
|
|
sess.span_diagnostic
|
|
|
|
.bug(&format!("cannot lex `source_file` without source: {}", source_file.name));
|
|
|
|
});
|
|
|
|
|
|
|
|
let (token_trees, unmatched_braces) =
|
|
|
|
lexer::parse_token_trees(sess, src.as_str(), source_file.start_pos, override_span);
|
2018-11-01 16:57:29 +00:00
|
|
|
|
2019-05-12 16:55:16 +00:00
|
|
|
match token_trees {
|
|
|
|
Ok(stream) => Ok((stream, unmatched_braces)),
|
2018-11-01 16:57:29 +00:00
|
|
|
Err(err) => {
|
|
|
|
let mut buffer = Vec::with_capacity(1);
|
|
|
|
err.buffer(&mut buffer);
|
2019-02-05 09:35:25 +00:00
|
|
|
// Not using `emit_unclosed_delims` to use `db.buffer`
|
2019-05-12 16:55:16 +00:00
|
|
|
for unmatched in unmatched_braces {
|
2019-10-29 00:44:20 +00:00
|
|
|
if let Some(err) = make_unclosed_delims_error(unmatched, &sess) {
|
2019-10-26 01:30:02 +00:00
|
|
|
err.buffer(&mut buffer);
|
2019-01-28 05:04:50 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-01 16:57:29 +00:00
|
|
|
Err(buffer)
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 02:56:45 +00:00
|
|
|
/// Given a stream and the `ParseSess`, produces a parser.
|
2019-05-22 00:47:23 +00:00
|
|
|
pub fn stream_to_parser<'a>(
|
|
|
|
sess: &'a ParseSess,
|
|
|
|
stream: TokenStream,
|
2019-05-22 05:17:53 +00:00
|
|
|
subparser_name: Option<&'static str>,
|
2019-05-22 00:47:23 +00:00
|
|
|
) -> Parser<'a> {
|
2020-03-08 12:36:20 +00:00
|
|
|
Parser::new(sess, stream, false, subparser_name)
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
2013-01-30 17:56:33 +00:00
|
|
|
|
2019-10-09 11:19:15 +00:00
|
|
|
/// Runs the given subparser `f` on the tokens of the given `attr`'s item.
|
2019-12-05 05:45:50 +00:00
|
|
|
pub fn parse_in<'a, T>(
|
2019-10-09 11:19:15 +00:00
|
|
|
sess: &'a ParseSess,
|
2019-12-05 05:45:50 +00:00
|
|
|
tts: TokenStream,
|
|
|
|
name: &'static str,
|
2019-10-09 11:19:15 +00:00
|
|
|
mut f: impl FnMut(&mut Parser<'a>) -> PResult<'a, T>,
|
|
|
|
) -> PResult<'a, T> {
|
2020-03-08 12:36:20 +00:00
|
|
|
let mut parser = Parser::new(sess, tts, false, Some(name));
|
2019-10-09 11:19:15 +00:00
|
|
|
let result = f(&mut parser)?;
|
|
|
|
if parser.token != token::Eof {
|
|
|
|
parser.unexpected()?;
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2019-10-09 00:34:22 +00:00
|
|
|
// NOTE(Centril): The following probably shouldn't be here but it acknowledges the
|
|
|
|
// fact that architecturally, we are using parsing (read on below to understand why).
|
|
|
|
|
|
|
|
pub fn nt_to_tokenstream(nt: &Nonterminal, sess: &ParseSess, span: Span) -> TokenStream {
|
|
|
|
// A `Nonterminal` is often a parsed AST item. At this point we now
|
|
|
|
// need to convert the parsed AST to an actual token stream, e.g.
|
|
|
|
// un-parse it basically.
|
|
|
|
//
|
|
|
|
// Unfortunately there's not really a great way to do that in a
|
|
|
|
// guaranteed lossless fashion right now. The fallback here is to just
|
|
|
|
// stringify the AST node and reparse it, but this loses all span
|
|
|
|
// information.
|
|
|
|
//
|
|
|
|
// As a result, some AST nodes are annotated with the token stream they
|
|
|
|
// came from. Here we attempt to extract these lossless token streams
|
|
|
|
// before we fall back to the stringification.
|
|
|
|
let tokens = match *nt {
|
|
|
|
Nonterminal::NtItem(ref item) => {
|
|
|
|
prepend_attrs(sess, &item.attrs, item.tokens.as_ref(), span)
|
|
|
|
}
|
2020-08-21 21:52:52 +00:00
|
|
|
Nonterminal::NtBlock(ref block) => block.tokens.clone(),
|
2020-07-27 22:02:29 +00:00
|
|
|
Nonterminal::NtPat(ref pat) => pat.tokens.clone(),
|
2020-08-21 22:18:04 +00:00
|
|
|
Nonterminal::NtTy(ref ty) => ty.tokens.clone(),
|
2019-10-09 00:34:22 +00:00
|
|
|
Nonterminal::NtIdent(ident, is_raw) => {
|
|
|
|
Some(tokenstream::TokenTree::token(token::Ident(ident.name, is_raw), ident.span).into())
|
|
|
|
}
|
|
|
|
Nonterminal::NtLifetime(ident) => {
|
|
|
|
Some(tokenstream::TokenTree::token(token::Lifetime(ident.name), ident.span).into())
|
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
Nonterminal::NtTT(ref tt) => Some(tt.clone().into()),
|
2020-05-19 20:56:20 +00:00
|
|
|
Nonterminal::NtExpr(ref expr) => {
|
|
|
|
if expr.tokens.is_none() {
|
|
|
|
debug!("missing tokens for expr {:?}", expr);
|
|
|
|
}
|
|
|
|
prepend_attrs(sess, &expr.attrs, expr.tokens.as_ref(), span)
|
|
|
|
}
|
2019-10-09 00:34:22 +00:00
|
|
|
_ => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
// FIXME(#43081): Avoid this pretty-print + reparse hack
|
|
|
|
let source = pprust::nonterminal_to_string(nt);
|
|
|
|
let filename = FileName::macro_expansion_source_code(&source);
|
|
|
|
let tokens_for_real = parse_stream_from_source_str(filename, source, sess, Some(span));
|
|
|
|
|
|
|
|
// During early phases of the compiler the AST could get modified
|
|
|
|
// directly (e.g., attributes added or removed) and the internal cache
|
|
|
|
// of tokens my not be invalidated or updated. Consequently if the
|
|
|
|
// "lossless" token stream disagrees with our actual stringification
|
|
|
|
// (which has historically been much more battle-tested) then we go
|
|
|
|
// with the lossy stream anyway (losing span information).
|
|
|
|
//
|
|
|
|
// Note that the comparison isn't `==` here to avoid comparing spans,
|
|
|
|
// but it *also* is a "probable" equality which is a pretty weird
|
|
|
|
// definition. We mostly want to catch actual changes to the AST
|
|
|
|
// like a `#[cfg]` being processed or some weird `macro_rules!`
|
|
|
|
// expansion.
|
|
|
|
//
|
|
|
|
// What we *don't* want to catch is the fact that a user-defined
|
|
|
|
// literal like `0xf` is stringified as `15`, causing the cached token
|
|
|
|
// stream to not be literal `==` token-wise (ignoring spans) to the
|
|
|
|
// token stream we got from stringification.
|
|
|
|
//
|
|
|
|
// Instead the "probably equal" check here is "does each token
|
|
|
|
// recursively have the same discriminant?" We basically don't look at
|
|
|
|
// the token values here and assume that such fine grained token stream
|
|
|
|
// modifications, including adding/removing typically non-semantic
|
|
|
|
// tokens such as extra braces and commas, don't happen.
|
|
|
|
if let Some(tokens) = tokens {
|
2020-06-24 05:52:48 +00:00
|
|
|
if tokenstream_probably_equal_for_proc_macro(&tokens, &tokens_for_real, sess) {
|
2019-12-22 22:42:04 +00:00
|
|
|
return tokens;
|
2019-10-09 00:34:22 +00:00
|
|
|
}
|
2019-12-22 22:42:04 +00:00
|
|
|
info!(
|
|
|
|
"cached tokens found, but they're not \"probably equal\", \
|
|
|
|
going with stringified version"
|
|
|
|
);
|
2020-05-19 20:56:20 +00:00
|
|
|
info!("cached tokens: {:?}", tokens);
|
|
|
|
info!("reparsed tokens: {:?}", tokens_for_real);
|
2019-10-09 00:34:22 +00:00
|
|
|
}
|
2020-03-20 14:03:11 +00:00
|
|
|
tokens_for_real
|
2019-10-09 00:34:22 +00:00
|
|
|
}
|
|
|
|
|
2020-08-01 11:59:02 +00:00
|
|
|
// See comments in `Nonterminal::to_tokenstream` for why we care about
|
|
|
|
// *probably* equal here rather than actual equality
|
|
|
|
//
|
|
|
|
// This is otherwise the same as `eq_unspanned`, only recursing with a
|
|
|
|
// different method.
|
2020-06-24 05:52:48 +00:00
|
|
|
pub fn tokenstream_probably_equal_for_proc_macro(
|
|
|
|
first: &TokenStream,
|
|
|
|
other: &TokenStream,
|
|
|
|
sess: &ParseSess,
|
|
|
|
) -> bool {
|
2020-08-01 11:59:02 +00:00
|
|
|
// When checking for `probably_eq`, we ignore certain tokens that aren't
|
|
|
|
// preserved in the AST. Because they are not preserved, the pretty
|
|
|
|
// printer arbitrarily adds or removes them when printing as token
|
|
|
|
// streams, making a comparison between a token stream generated from an
|
|
|
|
// AST and a token stream which was parsed into an AST more reliable.
|
|
|
|
fn semantic_tree(tree: &TokenTree) -> bool {
|
|
|
|
if let TokenTree::Token(token) = tree {
|
|
|
|
if let
|
|
|
|
// The pretty printer tends to add trailing commas to
|
|
|
|
// everything, and in particular, after struct fields.
|
|
|
|
| token::Comma
|
|
|
|
// The pretty printer emits `NoDelim` as whitespace.
|
|
|
|
| token::OpenDelim(DelimToken::NoDelim)
|
|
|
|
| token::CloseDelim(DelimToken::NoDelim)
|
|
|
|
// The pretty printer collapses many semicolons into one.
|
|
|
|
| token::Semi
|
|
|
|
// The pretty printer can turn `$crate` into `::crate_name`
|
|
|
|
| token::ModSep = token.kind {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
|
|
|
// When comparing two `TokenStream`s, we ignore the `IsJoint` information.
|
|
|
|
//
|
|
|
|
// However, `rustc_parse::lexer::tokentrees::TokenStreamBuilder` will
|
|
|
|
// use `Token.glue` on adjacent tokens with the proper `IsJoint`.
|
|
|
|
// Since we are ignoreing `IsJoint`, a 'glued' token (e.g. `BinOp(Shr)`)
|
|
|
|
// and its 'split'/'unglued' compoenents (e.g. `Gt, Gt`) are equivalent
|
|
|
|
// when determining if two `TokenStream`s are 'probably equal'.
|
|
|
|
//
|
|
|
|
// Therefore, we use `break_two_token_op` to convert all tokens
|
|
|
|
// to the 'unglued' form (if it exists). This ensures that two
|
|
|
|
// `TokenStream`s which differ only in how their tokens are glued
|
|
|
|
// will be considered 'probably equal', which allows us to keep spans.
|
|
|
|
//
|
|
|
|
// This is important when the original `TokenStream` contained
|
|
|
|
// extra spaces (e.g. `f :: < Vec < _ > > ( ) ;'). These extra spaces
|
|
|
|
// will be omitted when we pretty-print, which can cause the original
|
|
|
|
// and reparsed `TokenStream`s to differ in the assignment of `IsJoint`,
|
|
|
|
// leading to some tokens being 'glued' together in one stream but not
|
|
|
|
// the other. See #68489 for more details.
|
|
|
|
fn break_tokens(tree: TokenTree) -> impl Iterator<Item = TokenTree> {
|
|
|
|
// In almost all cases, we should have either zero or one levels
|
|
|
|
// of 'unglueing'. However, in some unusual cases, we may need
|
|
|
|
// to iterate breaking tokens mutliple times. For example:
|
|
|
|
// '[BinOpEq(Shr)] => [Gt, Ge] -> [Gt, Gt, Eq]'
|
|
|
|
let mut token_trees: SmallVec<[_; 2]>;
|
|
|
|
if let TokenTree::Token(token) = &tree {
|
|
|
|
let mut out = SmallVec::<[_; 2]>::new();
|
|
|
|
out.push(token.clone());
|
|
|
|
// Iterate to fixpoint:
|
|
|
|
// * We start off with 'out' containing our initial token, and `temp` empty
|
|
|
|
// * If we are able to break any tokens in `out`, then `out` will have
|
|
|
|
// at least one more element than 'temp', so we will try to break tokens
|
|
|
|
// again.
|
|
|
|
// * If we cannot break any tokens in 'out', we are done
|
|
|
|
loop {
|
|
|
|
let mut temp = SmallVec::<[_; 2]>::new();
|
|
|
|
let mut changed = false;
|
|
|
|
|
|
|
|
for token in out.into_iter() {
|
|
|
|
if let Some((first, second)) = token.kind.break_two_token_op() {
|
|
|
|
temp.push(Token::new(first, DUMMY_SP));
|
|
|
|
temp.push(Token::new(second, DUMMY_SP));
|
|
|
|
changed = true;
|
|
|
|
} else {
|
|
|
|
temp.push(token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out = temp;
|
|
|
|
if !changed {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
token_trees = out.into_iter().map(TokenTree::Token).collect();
|
|
|
|
} else {
|
|
|
|
token_trees = SmallVec::new();
|
|
|
|
token_trees.push(tree);
|
|
|
|
}
|
|
|
|
token_trees.into_iter()
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:52:48 +00:00
|
|
|
let expand_nt = |tree: TokenTree| {
|
|
|
|
if let TokenTree::Token(Token { kind: TokenKind::Interpolated(nt), span }) = &tree {
|
|
|
|
// When checking tokenstreams for 'probable equality', we are comparing
|
|
|
|
// a captured (from parsing) `TokenStream` to a reparsed tokenstream.
|
|
|
|
// The reparsed Tokenstream will never have `None`-delimited groups,
|
|
|
|
// since they are only ever inserted as a result of macro expansion.
|
|
|
|
// Therefore, inserting a `None`-delimtied group here (when we
|
|
|
|
// convert a nested `Nonterminal` to a tokenstream) would cause
|
|
|
|
// a mismatch with the reparsed tokenstream.
|
|
|
|
//
|
|
|
|
// Note that we currently do not handle the case where the
|
|
|
|
// reparsed stream has a `Parenthesis`-delimited group
|
|
|
|
// inserted. This will cause a spurious mismatch:
|
|
|
|
// issue #75734 tracks resolving this.
|
|
|
|
nt_to_tokenstream(nt, sess, *span).into_trees()
|
|
|
|
} else {
|
2020-09-03 15:21:53 +00:00
|
|
|
TokenStream::new(vec![(tree, Spacing::Alone)]).into_trees()
|
2020-06-24 05:52:48 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Break tokens after we expand any nonterminals, so that we break tokens
|
|
|
|
// that are produced as a result of nonterminal expansion.
|
|
|
|
let mut t1 = first.trees().filter(semantic_tree).flat_map(expand_nt).flat_map(break_tokens);
|
|
|
|
let mut t2 = other.trees().filter(semantic_tree).flat_map(expand_nt).flat_map(break_tokens);
|
2020-08-01 11:59:02 +00:00
|
|
|
for (t1, t2) in t1.by_ref().zip(t2.by_ref()) {
|
2020-06-24 05:52:48 +00:00
|
|
|
if !tokentree_probably_equal_for_proc_macro(&t1, &t2, sess) {
|
2020-08-01 11:59:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t1.next().is_none() && t2.next().is_none()
|
|
|
|
}
|
|
|
|
|
|
|
|
// See comments in `Nonterminal::to_tokenstream` for why we care about
|
|
|
|
// *probably* equal here rather than actual equality
|
|
|
|
//
|
|
|
|
// This is otherwise the same as `eq_unspanned`, only recursing with a
|
|
|
|
// different method.
|
2020-06-24 05:52:48 +00:00
|
|
|
pub fn tokentree_probably_equal_for_proc_macro(
|
|
|
|
first: &TokenTree,
|
|
|
|
other: &TokenTree,
|
|
|
|
sess: &ParseSess,
|
|
|
|
) -> bool {
|
2020-08-01 11:59:02 +00:00
|
|
|
match (first, other) {
|
|
|
|
(TokenTree::Token(token), TokenTree::Token(token2)) => {
|
|
|
|
token_probably_equal_for_proc_macro(token, token2)
|
|
|
|
}
|
|
|
|
(TokenTree::Delimited(_, delim, tts), TokenTree::Delimited(_, delim2, tts2)) => {
|
2020-06-24 05:52:48 +00:00
|
|
|
delim == delim2 && tokenstream_probably_equal_for_proc_macro(&tts, &tts2, sess)
|
2020-08-01 11:59:02 +00:00
|
|
|
}
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// See comments in `Nonterminal::to_tokenstream` for why we care about
|
|
|
|
// *probably* equal here rather than actual equality
|
|
|
|
fn token_probably_equal_for_proc_macro(first: &Token, other: &Token) -> bool {
|
|
|
|
if mem::discriminant(&first.kind) != mem::discriminant(&other.kind) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
use rustc_ast::token::TokenKind::*;
|
|
|
|
match (&first.kind, &other.kind) {
|
|
|
|
(&Eq, &Eq)
|
|
|
|
| (&Lt, &Lt)
|
|
|
|
| (&Le, &Le)
|
|
|
|
| (&EqEq, &EqEq)
|
|
|
|
| (&Ne, &Ne)
|
|
|
|
| (&Ge, &Ge)
|
|
|
|
| (&Gt, &Gt)
|
|
|
|
| (&AndAnd, &AndAnd)
|
|
|
|
| (&OrOr, &OrOr)
|
|
|
|
| (&Not, &Not)
|
|
|
|
| (&Tilde, &Tilde)
|
|
|
|
| (&At, &At)
|
|
|
|
| (&Dot, &Dot)
|
|
|
|
| (&DotDot, &DotDot)
|
|
|
|
| (&DotDotDot, &DotDotDot)
|
|
|
|
| (&DotDotEq, &DotDotEq)
|
|
|
|
| (&Comma, &Comma)
|
|
|
|
| (&Semi, &Semi)
|
|
|
|
| (&Colon, &Colon)
|
|
|
|
| (&ModSep, &ModSep)
|
|
|
|
| (&RArrow, &RArrow)
|
|
|
|
| (&LArrow, &LArrow)
|
|
|
|
| (&FatArrow, &FatArrow)
|
|
|
|
| (&Pound, &Pound)
|
|
|
|
| (&Dollar, &Dollar)
|
|
|
|
| (&Question, &Question)
|
|
|
|
| (&Eof, &Eof) => true,
|
|
|
|
|
|
|
|
(&BinOp(a), &BinOp(b)) | (&BinOpEq(a), &BinOpEq(b)) => a == b,
|
|
|
|
|
|
|
|
(&OpenDelim(a), &OpenDelim(b)) | (&CloseDelim(a), &CloseDelim(b)) => a == b,
|
|
|
|
|
2020-07-21 19:16:19 +00:00
|
|
|
(&DocComment(a1, a2, a3), &DocComment(b1, b2, b3)) => a1 == b1 && a2 == b2 && a3 == b3,
|
|
|
|
|
2020-08-01 11:59:02 +00:00
|
|
|
(&Literal(a), &Literal(b)) => a == b,
|
|
|
|
|
|
|
|
(&Lifetime(a), &Lifetime(b)) => a == b,
|
|
|
|
(&Ident(a, b), &Ident(c, d)) => {
|
|
|
|
b == d && (a == c || a == kw::DollarCrate || c == kw::DollarCrate)
|
|
|
|
}
|
|
|
|
|
2020-06-24 05:52:48 +00:00
|
|
|
(&Interpolated(..), &Interpolated(..)) => panic!("Unexpanded Interpolated!"),
|
2020-08-01 11:59:02 +00:00
|
|
|
|
|
|
|
_ => panic!("forgot to add a token?"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-09 00:34:22 +00:00
|
|
|
fn prepend_attrs(
|
|
|
|
sess: &ParseSess,
|
|
|
|
attrs: &[ast::Attribute],
|
|
|
|
tokens: Option<&tokenstream::TokenStream>,
|
2019-12-31 17:15:40 +00:00
|
|
|
span: rustc_span::Span,
|
2019-10-09 00:34:22 +00:00
|
|
|
) -> Option<tokenstream::TokenStream> {
|
|
|
|
let tokens = tokens?;
|
2020-02-28 13:20:33 +00:00
|
|
|
if attrs.is_empty() {
|
2019-12-22 22:42:04 +00:00
|
|
|
return Some(tokens.clone());
|
2019-10-09 00:34:22 +00:00
|
|
|
}
|
|
|
|
let mut builder = tokenstream::TokenStreamBuilder::new();
|
|
|
|
for attr in attrs {
|
2019-12-22 22:42:04 +00:00
|
|
|
assert_eq!(
|
|
|
|
attr.style,
|
|
|
|
ast::AttrStyle::Outer,
|
|
|
|
"inner attributes should prevent cached tokens from existing"
|
|
|
|
);
|
2019-10-09 00:34:22 +00:00
|
|
|
|
|
|
|
let source = pprust::attribute_to_string(attr);
|
|
|
|
let macro_filename = FileName::macro_expansion_source_code(&source);
|
2019-10-23 19:33:12 +00:00
|
|
|
|
|
|
|
let item = match attr.kind {
|
|
|
|
ast::AttrKind::Normal(ref item) => item,
|
2020-07-21 19:16:19 +00:00
|
|
|
ast::AttrKind::DocComment(..) => {
|
2019-10-23 19:33:12 +00:00
|
|
|
let stream = parse_stream_from_source_str(macro_filename, source, sess, Some(span));
|
|
|
|
builder.push(stream);
|
2019-12-22 22:42:04 +00:00
|
|
|
continue;
|
2019-10-23 19:33:12 +00:00
|
|
|
}
|
|
|
|
};
|
2019-10-09 00:34:22 +00:00
|
|
|
|
|
|
|
// synthesize # [ $path $tokens ] manually here
|
|
|
|
let mut brackets = tokenstream::TokenStreamBuilder::new();
|
|
|
|
|
|
|
|
// For simple paths, push the identifier directly
|
2019-10-23 19:33:12 +00:00
|
|
|
if item.path.segments.len() == 1 && item.path.segments[0].args.is_none() {
|
|
|
|
let ident = item.path.segments[0].ident;
|
2019-10-09 00:34:22 +00:00
|
|
|
let token = token::Ident(ident.name, ident.as_str().starts_with("r#"));
|
|
|
|
brackets.push(tokenstream::TokenTree::token(token, ident.span));
|
|
|
|
|
|
|
|
// ... and for more complicated paths, fall back to a reparse hack that
|
|
|
|
// should eventually be removed.
|
|
|
|
} else {
|
|
|
|
let stream = parse_stream_from_source_str(macro_filename, source, sess, Some(span));
|
|
|
|
brackets.push(stream);
|
|
|
|
}
|
|
|
|
|
2019-12-01 14:07:38 +00:00
|
|
|
brackets.push(item.args.outer_tokens());
|
2019-10-09 00:34:22 +00:00
|
|
|
|
|
|
|
// The span we list here for `#` and for `[ ... ]` are both wrong in
|
|
|
|
// that it encompasses more than each token, but it hopefully is "good
|
|
|
|
// enough" for now at least.
|
|
|
|
builder.push(tokenstream::TokenTree::token(token::Pound, attr.span));
|
|
|
|
let delim_span = tokenstream::DelimSpan::from_single(attr.span);
|
|
|
|
builder.push(tokenstream::TokenTree::Delimited(
|
2019-12-22 22:42:04 +00:00
|
|
|
delim_span,
|
|
|
|
token::DelimToken::Bracket,
|
2020-02-25 17:10:34 +00:00
|
|
|
brackets.build(),
|
2019-12-22 22:42:04 +00:00
|
|
|
));
|
2019-10-09 00:34:22 +00:00
|
|
|
}
|
|
|
|
builder.push(tokens.clone());
|
|
|
|
Some(builder.build())
|
|
|
|
}
|