| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- // 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
- #include "toolchain/parse/context.h"
- #include <optional>
- #include "common/check.h"
- #include "common/ostream.h"
- #include "llvm/ADT/STLExtras.h"
- #include "toolchain/lex/token_kind.h"
- #include "toolchain/lex/tokenized_buffer.h"
- #include "toolchain/parse/node_kind.h"
- #include "toolchain/parse/tree.h"
- namespace Carbon::Parse {
- // A relative location for characters in errors.
- enum class RelativeLocation : int8_t {
- Around,
- After,
- Before,
- };
- // Adapts RelativeLocation for use with formatv.
- static auto operator<<(llvm::raw_ostream& out, RelativeLocation loc)
- -> llvm::raw_ostream& {
- switch (loc) {
- case RelativeLocation::Around:
- out << "around";
- break;
- case RelativeLocation::After:
- out << "after";
- break;
- case RelativeLocation::Before:
- out << "before";
- break;
- }
- return out;
- }
- Context::Context(Tree& tree, Lex::TokenizedBuffer& tokens,
- Lex::TokenDiagnosticEmitter& emitter,
- llvm::raw_ostream* vlog_stream)
- : tree_(&tree),
- tokens_(&tokens),
- emitter_(&emitter),
- vlog_stream_(vlog_stream),
- position_(tokens_->tokens().begin()),
- end_(tokens_->tokens().end()) {
- CARBON_CHECK(position_ != end_) << "Empty TokenizedBuffer";
- --end_;
- CARBON_CHECK(tokens_->GetKind(*end_) == Lex::TokenKind::FileEnd)
- << "TokenizedBuffer should end with FileEnd, ended with "
- << tokens_->GetKind(*end_);
- }
- auto Context::AddLeafNode(NodeKind kind, Lex::Token token, bool has_error)
- -> void {
- CheckNodeMatchesLexerToken(kind, tokens_->GetKind(token), has_error);
- tree_->node_impls_.push_back(
- Tree::NodeImpl(kind, has_error, token, /*subtree_size=*/1));
- if (has_error) {
- tree_->has_errors_ = true;
- }
- }
- auto Context::AddNode(NodeKind kind, Lex::Token token, int subtree_start,
- bool has_error) -> void {
- CheckNodeMatchesLexerToken(kind, tokens_->GetKind(token), has_error);
- int subtree_size = tree_->size() - subtree_start + 1;
- tree_->node_impls_.push_back(
- Tree::NodeImpl(kind, has_error, token, subtree_size));
- if (has_error) {
- tree_->has_errors_ = true;
- }
- }
- auto Context::ConsumeAndAddOpenParen(Lex::Token default_token,
- NodeKind start_kind)
- -> std::optional<Lex::Token> {
- if (auto open_paren = ConsumeIf(Lex::TokenKind::OpenParen)) {
- AddLeafNode(start_kind, *open_paren, /*has_error=*/false);
- return open_paren;
- } else {
- CARBON_DIAGNOSTIC(ExpectedParenAfter, Error, "Expected `(` after `{0}`.",
- Lex::TokenKind);
- emitter_->Emit(*position_, ExpectedParenAfter,
- tokens().GetKind(default_token));
- AddLeafNode(start_kind, default_token, /*has_error=*/true);
- return std::nullopt;
- }
- }
- auto Context::ConsumeAndAddCloseSymbol(Lex::Token expected_open,
- StateStackEntry state,
- NodeKind close_kind) -> void {
- Lex::TokenKind open_token_kind = tokens().GetKind(expected_open);
- if (!open_token_kind.is_opening_symbol()) {
- AddNode(close_kind, state.token, state.subtree_start, /*has_error=*/true);
- } else if (auto close_token = ConsumeIf(open_token_kind.closing_symbol())) {
- AddNode(close_kind, *close_token, state.subtree_start, state.has_error);
- } else {
- // TODO: Include the location of the matching opening delimiter in the
- // diagnostic.
- CARBON_DIAGNOSTIC(ExpectedCloseSymbol, Error,
- "Unexpected tokens before `{0}`.", llvm::StringRef);
- emitter_->Emit(*position_, ExpectedCloseSymbol,
- open_token_kind.closing_symbol().fixed_spelling());
- SkipTo(tokens().GetMatchedClosingToken(expected_open));
- AddNode(close_kind, Consume(), state.subtree_start, /*has_error=*/true);
- }
- }
- auto Context::ConsumeAndAddLeafNodeIf(Lex::TokenKind token_kind,
- NodeKind node_kind) -> bool {
- auto token = ConsumeIf(token_kind);
- if (!token) {
- return false;
- }
- AddLeafNode(node_kind, *token);
- return true;
- }
- auto Context::ConsumeChecked(Lex::TokenKind kind) -> Lex::Token {
- CARBON_CHECK(PositionIs(kind))
- << "Required " << kind << ", found " << PositionKind();
- return Consume();
- }
- auto Context::ConsumeIf(Lex::TokenKind kind) -> std::optional<Lex::Token> {
- if (!PositionIs(kind)) {
- return std::nullopt;
- }
- return Consume();
- }
- auto Context::ConsumeIfPatternKeyword(Lex::TokenKind keyword_token,
- State keyword_state, int subtree_start)
- -> void {
- if (auto token = ConsumeIf(keyword_token)) {
- PushState(Context::StateStackEntry(
- keyword_state, PrecedenceGroup::ForTopLevelExpr(),
- PrecedenceGroup::ForTopLevelExpr(), *token, subtree_start));
- }
- }
- auto Context::FindNextOf(std::initializer_list<Lex::TokenKind> desired_kinds)
- -> std::optional<Lex::Token> {
- auto new_position = position_;
- while (true) {
- Lex::Token token = *new_position;
- Lex::TokenKind kind = tokens().GetKind(token);
- if (kind.IsOneOf(desired_kinds)) {
- return token;
- }
- // Step to the next token at the current bracketing level.
- if (kind.is_closing_symbol() || kind == Lex::TokenKind::FileEnd) {
- // There are no more tokens at this level.
- return std::nullopt;
- } else if (kind.is_opening_symbol()) {
- new_position = Lex::TokenIterator(tokens().GetMatchedClosingToken(token));
- // Advance past the closing token.
- ++new_position;
- } else {
- ++new_position;
- }
- }
- }
- auto Context::SkipMatchingGroup() -> bool {
- if (!PositionKind().is_opening_symbol()) {
- return false;
- }
- SkipTo(tokens().GetMatchedClosingToken(*position_));
- ++position_;
- return true;
- }
- auto Context::SkipPastLikelyEnd(Lex::Token skip_root)
- -> std::optional<Lex::Token> {
- if (position_ == end_) {
- return std::nullopt;
- }
- Lex::Line root_line = tokens().GetLine(skip_root);
- int root_line_indent = tokens().GetIndentColumnNumber(root_line);
- // We will keep scanning through tokens on the same line as the root or
- // lines with greater indentation than root's line.
- auto is_same_line_or_indent_greater_than_root = [&](Lex::Token t) {
- Lex::Line l = tokens().GetLine(t);
- if (l == root_line) {
- return true;
- }
- return tokens().GetIndentColumnNumber(l) > root_line_indent;
- };
- do {
- if (PositionIs(Lex::TokenKind::CloseCurlyBrace)) {
- // Immediately bail out if we hit an unmatched close curly, this will
- // pop us up a level of the syntax grouping.
- return std::nullopt;
- }
- // We assume that a semicolon is always intended to be the end of the
- // current construct.
- if (auto semi = ConsumeIf(Lex::TokenKind::Semi)) {
- return semi;
- }
- // Skip over any matching group of tokens().
- if (SkipMatchingGroup()) {
- continue;
- }
- // Otherwise just step forward one token.
- ++position_;
- } while (position_ != end_ &&
- is_same_line_or_indent_greater_than_root(*position_));
- return std::nullopt;
- }
- auto Context::SkipTo(Lex::Token t) -> void {
- CARBON_CHECK(t >= *position_) << "Tried to skip backwards from " << position_
- << " to " << Lex::TokenIterator(t);
- position_ = Lex::TokenIterator(t);
- CARBON_CHECK(position_ != end_) << "Skipped past EOF.";
- }
- // Determines whether the given token is considered to be the start of an
- // operand according to the rules for infix operator parsing.
- static auto IsAssumedStartOfOperand(Lex::TokenKind kind) -> bool {
- return kind.IsOneOf({Lex::TokenKind::OpenParen, Lex::TokenKind::Identifier,
- Lex::TokenKind::IntegerLiteral,
- Lex::TokenKind::RealLiteral,
- Lex::TokenKind::StringLiteral});
- }
- // Determines whether the given token is considered to be the end of an
- // operand according to the rules for infix operator parsing.
- static auto IsAssumedEndOfOperand(Lex::TokenKind kind) -> bool {
- return kind.IsOneOf(
- {Lex::TokenKind::CloseParen, Lex::TokenKind::CloseCurlyBrace,
- Lex::TokenKind::CloseSquareBracket, Lex::TokenKind::Identifier,
- Lex::TokenKind::IntegerLiteral, Lex::TokenKind::RealLiteral,
- Lex::TokenKind::StringLiteral});
- }
- // Determines whether the given token could possibly be the start of an
- // operand. This is conservatively correct, and will never incorrectly return
- // `false`, but can incorrectly return `true`.
- static auto IsPossibleStartOfOperand(Lex::TokenKind kind) -> bool {
- return !kind.IsOneOf(
- {Lex::TokenKind::CloseParen, Lex::TokenKind::CloseCurlyBrace,
- Lex::TokenKind::CloseSquareBracket, Lex::TokenKind::Comma,
- Lex::TokenKind::Semi, Lex::TokenKind::Colon});
- }
- auto Context::IsLexicallyValidInfixOperator() -> bool {
- CARBON_CHECK(position_ != end_) << "Expected an operator token.";
- bool leading_space = tokens().HasLeadingWhitespace(*position_);
- bool trailing_space = tokens().HasTrailingWhitespace(*position_);
- // If there's whitespace on both sides, it's an infix operator.
- if (leading_space && trailing_space) {
- return true;
- }
- // If there's whitespace on exactly one side, it's not an infix operator.
- if (leading_space || trailing_space) {
- return false;
- }
- // Otherwise, for an infix operator, the preceding token must be any close
- // bracket, identifier, or literal and the next token must be an open paren,
- // identifier, or literal.
- if (position_ == tokens().tokens().begin() ||
- !IsAssumedEndOfOperand(tokens().GetKind(*(position_ - 1))) ||
- !IsAssumedStartOfOperand(tokens().GetKind(*(position_ + 1)))) {
- return false;
- }
- return true;
- }
- auto Context::IsTrailingOperatorInfix() -> bool {
- if (position_ == end_) {
- return false;
- }
- // An operator that follows the infix operator rules is parsed as
- // infix, unless the next token means that it can't possibly be.
- if (IsLexicallyValidInfixOperator() &&
- IsPossibleStartOfOperand(tokens().GetKind(*(position_ + 1)))) {
- return true;
- }
- // A trailing operator with leading whitespace that's not valid as infix is
- // not valid at all. If the next token looks like the start of an operand,
- // then parse as infix, otherwise as postfix. Either way we'll produce a
- // diagnostic later on.
- if (tokens().HasLeadingWhitespace(*position_) &&
- IsAssumedStartOfOperand(tokens().GetKind(*(position_ + 1)))) {
- return true;
- }
- return false;
- }
- auto Context::DiagnoseOperatorFixity(OperatorFixity fixity) -> void {
- if (!PositionKind().is_symbol()) {
- // Whitespace-based fixity rules only apply to symbolic operators.
- return;
- }
- if (fixity == OperatorFixity::Infix) {
- // Infix operators must satisfy the infix operator rules.
- if (!IsLexicallyValidInfixOperator()) {
- CARBON_DIAGNOSTIC(BinaryOperatorRequiresWhitespace, Error,
- "Whitespace missing {0} binary operator.",
- RelativeLocation);
- emitter_->Emit(*position_, BinaryOperatorRequiresWhitespace,
- tokens().HasLeadingWhitespace(*position_)
- ? RelativeLocation::After
- : (tokens().HasTrailingWhitespace(*position_)
- ? RelativeLocation::Before
- : RelativeLocation::Around));
- }
- } else {
- bool prefix = fixity == OperatorFixity::Prefix;
- // Whitespace is not permitted between a symbolic pre/postfix operator and
- // its operand.
- if ((prefix ? tokens().HasTrailingWhitespace(*position_)
- : tokens().HasLeadingWhitespace(*position_))) {
- CARBON_DIAGNOSTIC(UnaryOperatorHasWhitespace, Error,
- "Whitespace is not allowed {0} this unary operator.",
- RelativeLocation);
- emitter_->Emit(
- *position_, UnaryOperatorHasWhitespace,
- prefix ? RelativeLocation::After : RelativeLocation::Before);
- } else if (IsLexicallyValidInfixOperator()) {
- // Pre/postfix operators must not satisfy the infix operator rules.
- CARBON_DIAGNOSTIC(UnaryOperatorRequiresWhitespace, Error,
- "Whitespace is required {0} this unary operator.",
- RelativeLocation);
- emitter_->Emit(
- *position_, UnaryOperatorRequiresWhitespace,
- prefix ? RelativeLocation::Before : RelativeLocation::After);
- }
- }
- }
- auto Context::ConsumeListToken(NodeKind comma_kind, Lex::TokenKind close_kind,
- bool already_has_error) -> ListTokenKind {
- if (!PositionIs(Lex::TokenKind::Comma) && !PositionIs(close_kind)) {
- // Don't error a second time on the same element.
- if (!already_has_error) {
- CARBON_DIAGNOSTIC(UnexpectedTokenAfterListElement, Error,
- "Expected `,` or `{0}`.", Lex::TokenKind);
- emitter_->Emit(*position_, UnexpectedTokenAfterListElement, close_kind);
- ReturnErrorOnState();
- }
- // Recover from the invalid token.
- auto end_of_element = FindNextOf({Lex::TokenKind::Comma, close_kind});
- // The lexer guarantees that parentheses are balanced.
- CARBON_CHECK(end_of_element)
- << "missing matching `" << close_kind.opening_symbol() << "` for `"
- << close_kind << "`";
- SkipTo(*end_of_element);
- }
- if (PositionIs(close_kind)) {
- return ListTokenKind::Close;
- } else {
- AddLeafNode(comma_kind, Consume());
- return PositionIs(close_kind) ? ListTokenKind::CommaClose
- : ListTokenKind::Comma;
- }
- }
- auto Context::GetDeclContext() -> DeclContext {
- // i == 0 is the file-level DeclScopeLoop. Additionally, i == 1 can be
- // skipped because it will never be a DeclScopeLoop.
- for (int i = state_stack_.size() - 1; i > 1; --i) {
- // The declaration context is always the state _above_ a
- // DeclScopeLoop.
- if (state_stack_[i].state == State::DeclScopeLoop) {
- switch (state_stack_[i - 1].state) {
- case State::TypeDefinitionFinishAsClass:
- return DeclContext::Class;
- case State::TypeDefinitionFinishAsInterface:
- return DeclContext::Interface;
- case State::TypeDefinitionFinishAsNamedConstraint:
- return DeclContext::NamedConstraint;
- default:
- llvm_unreachable("Missing handling for a declaration scope");
- }
- }
- }
- CARBON_CHECK(!state_stack_.empty() &&
- state_stack_[0].state == State::DeclScopeLoop);
- return DeclContext::File;
- }
- auto Context::RecoverFromDeclError(StateStackEntry state,
- NodeKind parse_node_kind,
- bool skip_past_likely_end) -> void {
- auto token = state.token;
- if (skip_past_likely_end) {
- if (auto semi = SkipPastLikelyEnd(token)) {
- token = *semi;
- }
- }
- AddNode(parse_node_kind, token, state.subtree_start,
- /*has_error=*/true);
- }
- auto Context::EmitExpectedDeclSemi(Lex::TokenKind expected_kind) -> void {
- CARBON_DIAGNOSTIC(ExpectedDeclSemi, Error,
- "`{0}` declarations must end with a `;`.", Lex::TokenKind);
- emitter().Emit(*position(), ExpectedDeclSemi, expected_kind);
- }
- auto Context::EmitExpectedDeclSemiOrDefinition(Lex::TokenKind expected_kind)
- -> void {
- CARBON_DIAGNOSTIC(ExpectedDeclSemiOrDefinition, Error,
- "`{0}` declarations must either end with a `;` or "
- "have a `{{ ... }` block for a definition.",
- Lex::TokenKind);
- emitter().Emit(*position(), ExpectedDeclSemiOrDefinition, expected_kind);
- }
- auto Context::PrintForStackDump(llvm::raw_ostream& output) const -> void {
- output << "Parser stack:\n";
- for (auto [i, entry] : llvm::enumerate(state_stack_)) {
- output << "\t" << i << ".\t" << entry.state;
- PrintTokenForStackDump(output, entry.token);
- }
- output << "\tcursor\tposition_";
- PrintTokenForStackDump(output, *position_);
- }
- auto Context::PrintTokenForStackDump(llvm::raw_ostream& output,
- Lex::Token token) const -> void {
- output << " @ " << tokens_->GetLineNumber(tokens_->GetLine(token)) << ":"
- << tokens_->GetColumnNumber(token) << ": token " << token << " : "
- << tokens_->GetKind(token) << "\n";
- }
- } // namespace Carbon::Parse
|