Add sentinel Eof token at the end of the tokenized buffer. (#388)

This has two goals:

1) It allows us to simplify and remove special cases from the parser:
   when we expect a particular token next, we can just check for it
   without needing a special case for end-of-file.

2) It gives us a token to use as a position when emitting diagnostics at
   the end of the file.

Centralize all updating of `position` to `Consume` and `SkipTo`, so that we can in a single place ensure that we never go past the EOF token.
This commit is contained in:
Richard Smith
2021-03-18 21:39:10 -07:00
committed by GitHub
parent d1757d9979
commit 1e6c7e3963
7 changed files with 415 additions and 284 deletions
+45 -53
View File
@@ -25,18 +25,34 @@ auto ParseTree::Parser::Parse(TokenizedBuffer& tokens,
tree.node_impls.reserve(tokens.Size());
Parser parser(tree, tokens);
while (parser.position != parser.end) {
while (!parser.AtEndOfFile()) {
parser.ParseDeclaration();
}
parser.AddLeafNode(ParseNodeKind::FileEnd(), *parser.position);
assert(tree.Verify() && "Parse tree built but does not verify!");
return tree;
}
ParseTree::Parser::Parser(ParseTree& tree_arg, TokenizedBuffer& tokens_arg)
: tree(tree_arg),
tokens(tokens_arg),
position(tokens.Tokens().begin()),
end(tokens.Tokens().end()) {
assert(std::find_if(position, end,
[&](TokenizedBuffer::Token t) {
return tokens.GetKind(t) == TokenKind::EndOfFile();
}) != end &&
"No EndOfFileToken in token buffer.");
}
auto ParseTree::Parser::Consume(TokenKind kind) -> TokenizedBuffer::Token {
TokenizedBuffer::Token t = *position;
assert(kind != TokenKind::EndOfFile() && "Cannot consume the EOF token!");
assert(tokens.GetKind(t) == kind && "The current token is the wrong kind!");
++position;
assert(position != end && "Reached end of tokens without finding EOF token.");
return t;
}
@@ -45,8 +61,7 @@ auto ParseTree::Parser::ConsumeIf(TokenKind kind)
if (tokens.GetKind(*position) != kind) {
return {};
}
return *position++;
return Consume(kind);
}
auto ParseTree::Parser::AddLeafNode(ParseNodeKind kind,
@@ -108,22 +123,27 @@ auto ParseTree::Parser::AddNode(ParseNodeKind n_kind, TokenizedBuffer::Token t,
}
auto ParseTree::Parser::SkipMatchingGroup() -> bool {
assert(position != end && "Cannot skip at the end!");
TokenizedBuffer::Token t = *position;
TokenKind t_kind = tokens.GetKind(t);
if (!t_kind.IsOpeningSymbol()) {
return false;
}
position = std::next(
TokenizedBuffer::TokenIterator(tokens.GetMatchedClosingToken(t)));
SkipTo(tokens.GetMatchedClosingToken(t));
Consume(t_kind.GetClosingSymbol());
return true;
}
auto ParseTree::Parser::SkipTo(TokenizedBuffer::Token t) -> void {
assert(t >= *position && "Tried to skip backwards.");
position = TokenizedBuffer::TokenIterator(t);
assert(position != end && "Skipped past EOF.");
}
auto ParseTree::Parser::SkipPastLikelyDeclarationEnd(
TokenizedBuffer::Token skip_root, bool is_inside_declaration)
-> llvm::Optional<Node> {
if (position == end) {
if (AtEndOfFile()) {
return {};
}
@@ -150,17 +170,14 @@ auto ParseTree::Parser::SkipPastLikelyDeclarationEnd(
return {};
}
// If we find a semicolon, we want to parse it to end the declaration.
if (current_kind == TokenKind::Semi()) {
TokenizedBuffer::Token semi = *position++;
// Add a node for the semicolon. If we're inside of a declaration, this
// is a declaration ending semicolon, otherwise it simply forms an empty
// declaration.
return AddLeafNode(is_inside_declaration
? ParseNodeKind::DeclarationEnd()
: ParseNodeKind::EmptyDeclaration(),
semi);
// If we find a semicolon, parse it and add a corresponding node. If we're
// inside of a declaration, this is a declaration ending semicolon,
// otherwise it simply forms an empty declaration.
if (auto end_node = ConsumeAndAddLeafNodeIf(
TokenKind::Semi(), is_inside_declaration
? ParseNodeKind::DeclarationEnd()
: ParseNodeKind::EmptyDeclaration())) {
return end_node;
}
// Skip over any matching group of tokens.
@@ -169,36 +186,31 @@ auto ParseTree::Parser::SkipPastLikelyDeclarationEnd(
}
// Otherwise just step forward one token.
++position;
} while (position != end &&
Consume(current_kind);
} while (!AtEndOfFile() &&
is_same_line_or_indent_greater_than_root(*position));
return {};
}
auto ParseTree::Parser::ParseFunctionSignature() -> Node {
assert(position != end && "Cannot parse past the end!");
TokenizedBuffer::Token open_paren = Consume(TokenKind::OpenParen());
assert(position != end &&
"The lexer ensures we always have a closing paren!");
auto start = StartSubtree();
// FIXME: Add support for parsing parameters.
bool has_errors = false;
auto close_paren = ConsumeIf(TokenKind::CloseParen());
if (!close_paren) {
if (tokens.GetKind(*position) != TokenKind::CloseParen()) {
llvm::errs() << "ERROR: unexpected token before the close of the "
"parameters on line "
<< tokens.GetLineNumber(*position) << "!\n";
has_errors = true;
// We can trivially skip to the actual close parenthesis from here.
close_paren = tokens.GetMatchedClosingToken(open_paren);
position = std::next(TokenizedBuffer::TokenIterator(*close_paren));
SkipTo(tokens.GetMatchedClosingToken(open_paren));
}
AddLeafNode(ParseNodeKind::ParameterListEnd(), *close_paren);
AddLeafNode(ParseNodeKind::ParameterListEnd(),
Consume(TokenKind::CloseParen()));
// FIXME: Implement parsing of a return type.
@@ -206,11 +218,7 @@ auto ParseTree::Parser::ParseFunctionSignature() -> Node {
}
auto ParseTree::Parser::ParseCodeBlock() -> Node {
assert(position != end && "Cannot parse past the end!");
TokenizedBuffer::Token open_curly = Consume(TokenKind::OpenCurlyBrace());
assert(position != end &&
"The lexer ensures we always have a closing curly!");
auto start = StartSubtree();
bool has_errors = false;
@@ -226,8 +234,7 @@ auto ParseTree::Parser::ParseCodeBlock() -> Node {
has_errors = true;
// We can trivially skip to the actual close curly brace from here.
position = TokenizedBuffer::TokenIterator(
tokens.GetMatchedClosingToken(open_curly));
SkipTo(tokens.GetMatchedClosingToken(open_curly));
// Now fall through to the close curly brace handling code.
LLVM_FALLTHROUGH;
@@ -254,21 +261,14 @@ auto ParseTree::Parser::ParseCodeBlock() -> Node {
}
auto ParseTree::Parser::ParseFunctionDeclaration() -> Node {
assert(position != end && "Cannot parse past the end!");
TokenizedBuffer::Token function_intro_token = Consume(TokenKind::FnKeyword());
auto start = StartSubtree();
auto add_error_function_node = [&] {
return AddNode(ParseNodeKind::FunctionDeclaration(), function_intro_token,
start, /*has_error=*/true);
};
if (position == end) {
llvm::errs() << "ERROR: File ended with a function introducer on line "
<< tokens.GetLineNumber(function_intro_token) << "!\n";
return add_error_function_node();
}
auto name_n = ConsumeAndAddLeafNodeIf(TokenKind::Identifier(),
ParseNodeKind::Identifier());
if (!name_n) {
@@ -280,12 +280,6 @@ auto ParseTree::Parser::ParseFunctionDeclaration() -> Node {
SkipPastLikelyDeclarationEnd(function_intro_token);
return add_error_function_node();
}
if (position == end) {
llvm::errs() << "ERROR: File ended after a function introducer and "
"identifier on line "
<< tokens.GetLineNumber(function_intro_token) << "!\n";
return add_error_function_node();
}
TokenizedBuffer::Token open_paren = *position;
if (tokens.GetKind(open_paren) != TokenKind::OpenParen()) {
@@ -296,8 +290,6 @@ auto ParseTree::Parser::ParseFunctionDeclaration() -> Node {
SkipPastLikelyDeclarationEnd(function_intro_token);
return add_error_function_node();
}
assert(std::next(position) != end &&
"Unbalanced parentheses should be rejected by the lexer.");
TokenizedBuffer::Token close_paren =
tokens.GetMatchedClosingToken(open_paren);
@@ -333,19 +325,19 @@ auto ParseTree::Parser::ParseFunctionDeclaration() -> Node {
}
auto ParseTree::Parser::ParseEmptyDeclaration() -> Node {
assert(position != end && "Cannot parse past the end!");
return AddLeafNode(ParseNodeKind::EmptyDeclaration(),
Consume(TokenKind::Semi()));
}
auto ParseTree::Parser::ParseDeclaration() -> llvm::Optional<Node> {
assert(position != end && "Cannot parse past the end!");
TokenizedBuffer::Token t = *position;
switch (tokens.GetKind(t)) {
case TokenKind::FnKeyword():
return ParseFunctionDeclaration();
case TokenKind::Semi():
return ParseEmptyDeclaration();
case TokenKind::EndOfFile():
return llvm::None;
default:
// Errors are handled outside the switch.
break;