mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:30:12 +01:00
I've been heading this route with other parts of the parser because the overhead of adding enums and then switching on them felt tedious, and odd from a performance perspective to make calls when the caller knew the value to use. My leaning is towards this approach that makes it clearer what's actually different between the modes, and allows removing BraceExpressionKindToParserState. It's a mild code size decrease.
385 lines
16 KiB
C++
385 lines
16 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#ifndef CARBON_TOOLCHAIN_PARSER_PARSER_H_
|
|
#define CARBON_TOOLCHAIN_PARSER_PARSER_H_
|
|
|
|
#include <optional>
|
|
|
|
#include "common/check.h"
|
|
#include "common/vlog.h"
|
|
#include "toolchain/lexer/token_kind.h"
|
|
#include "toolchain/lexer/tokenized_buffer.h"
|
|
#include "toolchain/parser/parse_node_kind.h"
|
|
#include "toolchain/parser/parse_tree.h"
|
|
#include "toolchain/parser/parser_state.h"
|
|
#include "toolchain/parser/precedence.h"
|
|
|
|
namespace Carbon {
|
|
|
|
// This parser uses a stack for state transitions. See parser_state.def for
|
|
// state documentation.
|
|
class Parser {
|
|
public:
|
|
// Parses the tokens into a parse tree, emitting any errors encountered.
|
|
//
|
|
// This is the entry point to the parser implementation.
|
|
static auto Parse(TokenizedBuffer& tokens, TokenDiagnosticEmitter& emitter,
|
|
llvm::raw_ostream* vlog_stream) -> ParseTree {
|
|
ParseTree tree(tokens);
|
|
Parser parser(tree, tokens, emitter, vlog_stream);
|
|
parser.Parse();
|
|
return tree;
|
|
}
|
|
|
|
private:
|
|
// Possible operator fixities for errors.
|
|
enum class OperatorFixity { Prefix, Infix, Postfix };
|
|
|
|
// Possible return values for FindListToken.
|
|
enum class ListTokenKind { Comma, Close, CommaClose };
|
|
|
|
// Supported kinds for HandlePattern.
|
|
enum class PatternKind { DeducedParameter, Parameter, Variable };
|
|
|
|
// Supported return values for GetDeclarationContext.
|
|
enum class DeclarationContext {
|
|
File, // Top-level context.
|
|
Class,
|
|
Interface,
|
|
NamedConstraint,
|
|
};
|
|
|
|
// Helper class for tracing state_stack_ on crashes.
|
|
class PrettyStackTraceParseState;
|
|
|
|
// Used to track state on state_stack_.
|
|
struct StateStackEntry {
|
|
explicit StateStackEntry(ParserState state,
|
|
PrecedenceGroup ambient_precedence,
|
|
PrecedenceGroup lhs_precedence,
|
|
TokenizedBuffer::Token token,
|
|
int32_t subtree_start)
|
|
: state(state),
|
|
ambient_precedence(ambient_precedence),
|
|
lhs_precedence(lhs_precedence),
|
|
token(token),
|
|
subtree_start(subtree_start) {}
|
|
|
|
// Prints state information for verbose output.
|
|
auto Print(llvm::raw_ostream& output) const -> void {
|
|
output << state << " @" << token << " subtree_start=" << subtree_start
|
|
<< " has_error=" << has_error;
|
|
};
|
|
|
|
// The state.
|
|
ParserState state;
|
|
// Set to true to indicate that an error was found, and that contextual
|
|
// error recovery may be needed.
|
|
bool has_error = false;
|
|
|
|
// Precedence information used by expression states in order to determine
|
|
// operator precedence. The ambient_precedence deals with how the expression
|
|
// should interact with outside context, while the lhs_precedence is
|
|
// specific to the lhs of an operator expression.
|
|
PrecedenceGroup ambient_precedence;
|
|
PrecedenceGroup lhs_precedence;
|
|
|
|
// A token providing context based on the subtree. This will typically be
|
|
// the first token in the subtree, but may sometimes be a token within. It
|
|
// will typically be used for the subtree's root node.
|
|
TokenizedBuffer::Token token;
|
|
// The offset within the ParseTree of the subtree start.
|
|
int32_t subtree_start;
|
|
};
|
|
|
|
// We expect StateStackEntry to fit into 12 bytes:
|
|
// state = 1 byte
|
|
// has_error = 1 byte
|
|
// ambient_precedence = 1 byte
|
|
// lhs_precedence = 1 byte
|
|
// token = 4 bytes
|
|
// subtree_start = 4 bytes
|
|
// If it becomes bigger, it'd be worth examining better packing; it should be
|
|
// feasible to pack the 1-byte entries more tightly.
|
|
static_assert(sizeof(StateStackEntry) == 12,
|
|
"StateStackEntry has unexpected size!");
|
|
|
|
explicit Parser(ParseTree& tree, TokenizedBuffer& tokens,
|
|
TokenDiagnosticEmitter& emitter,
|
|
llvm::raw_ostream* vlog_stream);
|
|
|
|
auto Parse() -> void;
|
|
|
|
// Adds a node to the parse tree that has no children (a leaf).
|
|
auto AddLeafNode(ParseNodeKind kind, TokenizedBuffer::Token token,
|
|
bool has_error = false) -> void;
|
|
|
|
// Adds a node to the parse tree that has children.
|
|
auto AddNode(ParseNodeKind kind, TokenizedBuffer::Token token,
|
|
int subtree_start, bool has_error) -> void;
|
|
|
|
// Returns the current position and moves past it.
|
|
auto Consume() -> TokenizedBuffer::Token { return *(position_++); }
|
|
|
|
// Parses an open paren token, possibly diagnosing if necessary. Creates a
|
|
// leaf parse node of the specified start kind. The default_token is used when
|
|
// there's no open paren.
|
|
auto ConsumeAndAddOpenParen(TokenizedBuffer::Token default_token,
|
|
ParseNodeKind start_kind) -> void;
|
|
|
|
// Parses a close paren token corresponding to the given open paren token,
|
|
// possibly skipping forward and diagnosing if necessary. Creates a parse node
|
|
// of the specified close kind.
|
|
auto ConsumeAndAddCloseParen(StateStackEntry state, ParseNodeKind close_kind)
|
|
-> void;
|
|
|
|
// Composes `ConsumeIf` and `AddLeafNode`, returning false when ConsumeIf
|
|
// fails.
|
|
auto ConsumeAndAddLeafNodeIf(TokenKind token_kind, ParseNodeKind node_kind)
|
|
-> bool;
|
|
|
|
// Returns the current position and moves past it. Requires the token is the
|
|
// expected kind.
|
|
auto ConsumeChecked(TokenKind kind) -> TokenizedBuffer::Token;
|
|
|
|
// If the current position's token matches this `Kind`, returns it and
|
|
// advances to the next position. Otherwise returns an empty optional.
|
|
auto ConsumeIf(TokenKind kind) -> std::optional<TokenizedBuffer::Token>;
|
|
|
|
// Find the next token of any of the given kinds at the current bracketing
|
|
// level.
|
|
auto FindNextOf(std::initializer_list<TokenKind> desired_kinds)
|
|
-> std::optional<TokenizedBuffer::Token>;
|
|
|
|
// If the token is an opening symbol for a matched group, skips to the matched
|
|
// closing symbol and returns true. Otherwise, returns false.
|
|
auto SkipMatchingGroup() -> bool;
|
|
|
|
// Skips forward to move past the likely end of a declaration or statement.
|
|
//
|
|
// Looks forward, skipping over any matched symbol groups, to find the next
|
|
// position that is likely past the end of a declaration or statement. This
|
|
// is a heuristic and should only be called when skipping past parse errors.
|
|
//
|
|
// The strategy for recognizing when we have likely passed the end of a
|
|
// declaration or statement:
|
|
// - If we get to a close curly brace, we likely ended the entire context.
|
|
// - If we get to a semicolon, that should have ended the declaration or
|
|
// statement.
|
|
// - If we get to a new line from the `SkipRoot` token, but with the same or
|
|
// less indentation, there is likely a missing semicolon. Continued
|
|
// declarations or statements across multiple lines should be indented.
|
|
//
|
|
// Returns a semicolon token if one is the likely end.
|
|
auto SkipPastLikelyEnd(TokenizedBuffer::Token skip_root)
|
|
-> std::optional<TokenizedBuffer::Token>;
|
|
|
|
// Skip forward to the given token. Verifies that it is actually forward.
|
|
auto SkipTo(TokenizedBuffer::Token t) -> void;
|
|
|
|
// Returns true if the current token satisfies the lexical validity rules
|
|
// for an infix operator.
|
|
auto IsLexicallyValidInfixOperator() -> bool;
|
|
|
|
// Determines whether the current trailing operator should be treated as
|
|
// infix.
|
|
auto IsTrailingOperatorInfix() -> bool;
|
|
|
|
// Diagnoses whether the current token is not written properly for the given
|
|
// fixity. For example, because mandatory whitespace is missing. Regardless of
|
|
// whether there's an error, it's expected that parsing continues.
|
|
auto DiagnoseOperatorFixity(OperatorFixity fixity) -> void;
|
|
|
|
// If the current position is a `,`, consumes it, adds the provided token, and
|
|
// returns `Comma`. Returns `Close` if the current position is close_token
|
|
// (for example, `)`). `CommaClose` indicates it found both (for example,
|
|
// `,)`). Handles cases where invalid tokens are present by advancing the
|
|
// position, and may emit errors. Pass already_has_error in order to suppress
|
|
// duplicate errors.
|
|
auto ConsumeListToken(ParseNodeKind comma_kind, TokenKind close_kind,
|
|
bool already_has_error) -> ListTokenKind;
|
|
|
|
// Gets the kind of the next token to be consumed.
|
|
auto PositionKind() const -> TokenKind {
|
|
return tokens_->GetKind(*position_);
|
|
}
|
|
|
|
// Tests whether the next token to be consumed is of the specified kind.
|
|
auto PositionIs(TokenKind kind) const -> bool {
|
|
return PositionKind() == kind;
|
|
}
|
|
|
|
// Pops the state and keeps the value for inspection.
|
|
auto PopState() -> StateStackEntry {
|
|
auto back = state_stack_.pop_back_val();
|
|
CARBON_VLOG() << "Pop " << state_stack_.size() << ": " << back << "\n";
|
|
return back;
|
|
}
|
|
|
|
// Pops the state and discards it.
|
|
auto PopAndDiscardState() -> void {
|
|
CARBON_VLOG() << "PopAndDiscard " << state_stack_.size() - 1 << ": "
|
|
<< state_stack_.back() << "\n";
|
|
state_stack_.pop_back();
|
|
}
|
|
|
|
// Pushes a new state with the current position for context.
|
|
auto PushState(ParserState state) -> void {
|
|
PushState(StateStackEntry(state, PrecedenceGroup::ForTopLevelExpression(),
|
|
PrecedenceGroup::ForTopLevelExpression(),
|
|
*position_, tree_->size()));
|
|
}
|
|
|
|
// Pushes a new expression state with specific precedence.
|
|
auto PushStateForExpression(PrecedenceGroup ambient_precedence) -> void {
|
|
PushState(StateStackEntry(ParserState::Expression, ambient_precedence,
|
|
PrecedenceGroup::ForTopLevelExpression(),
|
|
*position_, tree_->size()));
|
|
}
|
|
|
|
// Pushes a new state with detailed precedence for expression resume states.
|
|
auto PushStateForExpressionLoop(ParserState state,
|
|
PrecedenceGroup ambient_precedence,
|
|
PrecedenceGroup lhs_precedence) -> void {
|
|
PushState(StateStackEntry(state, ambient_precedence, lhs_precedence,
|
|
*position_, tree_->size()));
|
|
}
|
|
|
|
// Pushes a constructed state onto the stack.
|
|
auto PushState(StateStackEntry state) -> void {
|
|
CARBON_VLOG() << "Push " << state_stack_.size() << ": " << state << "\n";
|
|
state_stack_.push_back(state);
|
|
CARBON_CHECK(state_stack_.size() < (1 << 20))
|
|
<< "Excessive stack size: likely infinite loop";
|
|
}
|
|
|
|
// Returns the current declaration context according to state_stack_.
|
|
// This is expected to be called in cases which are close to a context.
|
|
// Although it looks like it could be O(n) for state_stack_'s depth, valid
|
|
// parses should only need to look down a couple steps.
|
|
//
|
|
// This currently assumes it's being called from within the declaration's
|
|
// DeclarationScopeLoop.
|
|
auto GetDeclarationContext() -> DeclarationContext;
|
|
|
|
// Handles error recovery in a declaration, particularly before any possible
|
|
// definition has started (although one could be present). Recover to a
|
|
// semicolon when it makes sense as a possible end, otherwise use the
|
|
// introducer token for the error.
|
|
auto HandleDeclarationError(StateStackEntry state,
|
|
ParseNodeKind parse_node_kind,
|
|
bool skip_past_likely_end) -> void;
|
|
|
|
// Handles an unrecognized declaration, adding an error node.
|
|
auto HandleUnrecognizedDeclaration() -> void;
|
|
|
|
// Propagates an error up the state stack, to the parent state.
|
|
auto ReturnErrorOnState() -> void { state_stack_.back().has_error = true; }
|
|
|
|
// Prints a diagnostic for brace expression syntax errors.
|
|
auto HandleBraceExpressionParameterError(StateStackEntry state,
|
|
ParserState param_finish_state)
|
|
-> void;
|
|
|
|
// Handles BraceExpressionParameterAs(Type|Value|Unknown).
|
|
auto HandleBraceExpressionParameter(ParserState after_designator_state,
|
|
ParserState param_finish_state) -> void;
|
|
|
|
// Handles BraceExpressionParameterAfterDesignatorAs(Type|Value|Unknown).
|
|
auto HandleBraceExpressionParameterAfterDesignator(
|
|
ParserState param_finish_state) -> void;
|
|
|
|
// Handles BraceExpressionParameterFinishAs(Type|Value|Unknown).
|
|
auto HandleBraceExpressionParameterFinish(ParseNodeKind node_kind,
|
|
ParserState param_state) -> void;
|
|
|
|
// Handles BraceExpressionFinishAs(Type|Value|Unknown).
|
|
auto HandleBraceExpressionFinish(ParseNodeKind node_kind) -> void;
|
|
|
|
// Handles DeclarationNameAndParamsAs(Optional|Required).
|
|
auto HandleDeclarationNameAndParams(bool params_required) -> void;
|
|
|
|
// Handles DesignatorAs.
|
|
auto HandleDesignator(bool as_struct) -> void;
|
|
|
|
// Handles ParameterAs(Deduced|Regular).
|
|
auto HandleParameter(ParserState pattern_state, ParserState finish_state)
|
|
-> void;
|
|
|
|
// Handles ParameterFinishAs(Deduced|Regular).
|
|
auto HandleParameterFinish(TokenKind close_token, ParserState param_state)
|
|
-> void;
|
|
|
|
// Handles ParameterListAs(Deduced|Regular).
|
|
auto HandleParameterList(ParseNodeKind parse_node_kind,
|
|
TokenKind open_token_kind,
|
|
TokenKind close_token_kind, ParserState param_state,
|
|
ParserState finish_state) -> void;
|
|
|
|
// Handles ParameterListFinishAs(Deduced|Regular).
|
|
auto HandleParameterListFinish(ParseNodeKind parse_node_kind,
|
|
TokenKind token_kind) -> void;
|
|
|
|
// Handles ParenConditionAs(If|While)
|
|
auto HandleParenCondition(ParseNodeKind start_kind, ParserState finish_state)
|
|
-> void;
|
|
|
|
// Handles ParenExpressionParameterFinishAs(Unknown|Tuple).
|
|
auto HandleParenExpressionParameterFinish(bool as_tuple) -> void;
|
|
|
|
// Handles PatternAs(DeducedParameter|FunctionParameter|Variable).
|
|
auto HandlePattern(PatternKind pattern_kind) -> void;
|
|
|
|
// Handles PatternFinishAs(Generic|Regular).
|
|
auto HandlePatternFinish(ParseNodeKind node_kind) -> void;
|
|
|
|
// For HandlePattern, tries to consume a wrapping keyword.
|
|
auto ConsumeIfPatternKeyword(TokenKind keyword_token,
|
|
ParserState keyword_state, int subtree_start)
|
|
-> void;
|
|
|
|
// Handles the `;` after a keyword statement.
|
|
auto HandleStatementKeywordFinish(ParseNodeKind node_kind) -> void;
|
|
|
|
// Handles processing of a type's introducer.
|
|
auto HandleTypeIntroducer(ParseNodeKind introducer_kind,
|
|
ParserState after_params_state) -> void;
|
|
|
|
// Handles processing after params, deciding whether it's a declaration or
|
|
// definition.
|
|
auto HandleTypeAfterParams(ParseNodeKind declaration_kind,
|
|
ParseNodeKind definition_start_kind,
|
|
ParserState definition_finish_state) -> void;
|
|
|
|
// Handles parsing after the declaration scope of a type.
|
|
auto HandleTypeDefinitionFinish(ParseNodeKind definition_kind) -> void;
|
|
|
|
// Handles VarAs(Semicolon|For).
|
|
auto HandleVar(ParserState finish_state) -> void;
|
|
|
|
// `clang-format` has a bug with spacing around `->` returns in macros. See
|
|
// https://bugs.llvm.org/show_bug.cgi?id=48320 for details.
|
|
#define CARBON_PARSER_STATE(Name) auto Handle##Name##State()->void;
|
|
#include "toolchain/parser/parser_state.def"
|
|
|
|
ParseTree* tree_;
|
|
TokenizedBuffer* tokens_;
|
|
TokenDiagnosticEmitter* emitter_;
|
|
|
|
// Whether to print verbose output.
|
|
llvm::raw_ostream* vlog_stream_;
|
|
|
|
// The current position within the token buffer.
|
|
TokenizedBuffer::TokenIterator position_;
|
|
// The EndOfFile token.
|
|
TokenizedBuffer::TokenIterator end_;
|
|
|
|
llvm::SmallVector<StateStackEntry> state_stack_;
|
|
};
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_PARSER_PARSER_H_
|