mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
The function is already in use by semantics, it's intended to be cleaner than having to write a dedicated printer class.
329 lines
13 KiB
C++
329 lines
13 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_CONTEXT_H_
|
|
#define CARBON_TOOLCHAIN_PARSER_PARSER_CONTEXT_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 {
|
|
|
|
// Context and shared functionality for parser handlers. See parser_state.def
|
|
// for state documentation.
|
|
class ParserContext {
|
|
public:
|
|
// 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,
|
|
};
|
|
|
|
// 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 ParserContext(ParseTree& tree, TokenizedBuffer& tokens,
|
|
TokenDiagnosticEmitter& emitter,
|
|
llvm::raw_ostream* vlog_stream);
|
|
|
|
// 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 state with a specific token for context. Used when forming a
|
|
// new subtree with a token that isn't the start of the subtree.
|
|
auto PushState(ParserState state, TokenizedBuffer::Token token) -> void {
|
|
PushState(StateStackEntry(state, PrecedenceGroup::ForTopLevelExpression(),
|
|
PrecedenceGroup::ForTopLevelExpression(), token,
|
|
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;
|
|
|
|
// Propagates an error up the state stack, to the parent state.
|
|
auto ReturnErrorOnState() -> void { state_stack_.back().has_error = true; }
|
|
|
|
// For ParserHandlePattern, tries to consume a wrapping keyword.
|
|
auto ConsumeIfPatternKeyword(TokenKind keyword_token,
|
|
ParserState keyword_state, int subtree_start)
|
|
-> void;
|
|
|
|
// Emits a diagnostic for a declaration missing a semi.
|
|
auto EmitExpectedDeclarationSemi(TokenKind expected_kind) -> void;
|
|
|
|
// Emits a diagnostic for a declaration missing a semi or definition.
|
|
auto EmitExpectedDeclarationSemiOrDefinition(TokenKind expected_kind) -> void;
|
|
|
|
// 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 RecoverFromDeclarationError(StateStackEntry state,
|
|
ParseNodeKind parse_node_kind,
|
|
bool skip_past_likely_end) -> void;
|
|
|
|
// Prints information for a stack dump.
|
|
auto PrintForStackDump(llvm::raw_ostream& output) const -> void;
|
|
|
|
auto tree() const -> const ParseTree& { return *tree_; }
|
|
|
|
auto tokens() const -> const TokenizedBuffer& { return *tokens_; }
|
|
|
|
auto emitter() -> TokenDiagnosticEmitter& { return *emitter_; }
|
|
|
|
auto position() -> TokenizedBuffer::TokenIterator& { return position_; }
|
|
auto position() const -> TokenizedBuffer::TokenIterator { return position_; }
|
|
|
|
auto state_stack() -> llvm::SmallVector<StateStackEntry>& {
|
|
return state_stack_;
|
|
}
|
|
|
|
auto state_stack() const -> const llvm::SmallVector<StateStackEntry>& {
|
|
return state_stack_;
|
|
}
|
|
|
|
private:
|
|
// Prints a single token for a stack dump. Used by PrintForStackDump.
|
|
auto PrintTokenForStackDump(llvm::raw_ostream& output,
|
|
TokenizedBuffer::Token token) const -> void;
|
|
|
|
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_;
|
|
};
|
|
|
|
// `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 ParserHandle##Name(ParserContext& context)->void;
|
|
#include "toolchain/parser/parser_state.def"
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // CARBON_TOOLCHAIN_PARSER_PARSER_CONTEXT_H_
|