mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
This reflects how we're naming classes that derive from these classes, and matches usage for each existing `Id` and `Index` type, except: - `Parse::NodeId` previously inherited from `ComparableIndexBase`, and is no longer comparable. - `SemIR::MemberIndex` previously inherited from `IndexBase`, and is now comparable. Making `Parse::NodeId` non-comparable reflects that it's intended to be an opaque identifier for a node and that the ordering is an implementation detail rather than part of the intended public interface. `PostorderIterator` and `SiblingIterator` still rely on the numerical meaning of `NodeId`s, but that's OK since they're part of the node implementation.
377 lines
13 KiB
C++
377 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_LEX_TOKENIZED_BUFFER_H_
|
|
#define CARBON_TOOLCHAIN_LEX_TOKENIZED_BUFFER_H_
|
|
|
|
#include <cstdint>
|
|
#include <iterator>
|
|
|
|
#include "common/ostream.h"
|
|
#include "llvm/ADT/APInt.h"
|
|
#include "llvm/ADT/SmallVector.h"
|
|
#include "llvm/ADT/StringRef.h"
|
|
#include "llvm/ADT/iterator.h"
|
|
#include "llvm/ADT/iterator_range.h"
|
|
#include "llvm/Support/Allocator.h"
|
|
#include "llvm/Support/raw_ostream.h"
|
|
#include "toolchain/base/index_base.h"
|
|
#include "toolchain/base/value_store.h"
|
|
#include "toolchain/diagnostics/diagnostic_emitter.h"
|
|
#include "toolchain/lex/token_kind.h"
|
|
#include "toolchain/source/source_buffer.h"
|
|
|
|
namespace Carbon::Lex {
|
|
|
|
class TokenizedBuffer;
|
|
|
|
// A lightweight handle to a lexed token in a `TokenizedBuffer`.
|
|
//
|
|
// `TokenIndex` objects are designed to be passed by value, not reference or
|
|
// pointer. They are also designed to be small and efficient to store in data
|
|
// structures.
|
|
//
|
|
// `TokenIndex` objects from the same `TokenizedBuffer` can be compared with
|
|
// each other, both for being the same token within the buffer, and to establish
|
|
// relative position within the token stream that has been lexed out of the
|
|
// buffer. `TokenIndex` objects from different `TokenizedBuffer`s cannot be
|
|
// meaningfully compared.
|
|
//
|
|
// All other APIs to query a `TokenIndex` are on the `TokenizedBuffer`.
|
|
struct TokenIndex : public IndexBase {
|
|
static const TokenIndex Invalid;
|
|
// Comments aren't tokenized, so this is the first token after FileStart.
|
|
static const TokenIndex FirstNonCommentToken;
|
|
using IndexBase::IndexBase;
|
|
};
|
|
|
|
constexpr TokenIndex TokenIndex::Invalid(TokenIndex::InvalidIndex);
|
|
constexpr TokenIndex TokenIndex::FirstNonCommentToken(1);
|
|
|
|
// A lightweight handle to a lexed line in a `TokenizedBuffer`.
|
|
//
|
|
// `LineIndex` objects are designed to be passed by value, not reference or
|
|
// pointer. They are also designed to be small and efficient to store in data
|
|
// structures.
|
|
//
|
|
// Each `LineIndex` object refers to a specific line in the source code that was
|
|
// lexed. They can be compared directly to establish that they refer to the
|
|
// same line or the relative position of different lines within the source.
|
|
//
|
|
// All other APIs to query a `LineIndex` are on the `TokenizedBuffer`.
|
|
struct LineIndex : public IndexBase {
|
|
static const LineIndex Invalid;
|
|
using IndexBase::IndexBase;
|
|
};
|
|
|
|
constexpr LineIndex LineIndex::Invalid(LineIndex::InvalidIndex);
|
|
|
|
// Random-access iterator over tokens within the buffer.
|
|
class TokenIterator
|
|
: public llvm::iterator_facade_base<TokenIterator,
|
|
std::random_access_iterator_tag,
|
|
const TokenIndex, int>,
|
|
public Printable<TokenIterator> {
|
|
public:
|
|
TokenIterator() = delete;
|
|
|
|
explicit TokenIterator(TokenIndex token) : token_(token) {}
|
|
|
|
auto operator==(const TokenIterator& rhs) const -> bool {
|
|
return token_ == rhs.token_;
|
|
}
|
|
auto operator<(const TokenIterator& rhs) const -> bool {
|
|
return token_ < rhs.token_;
|
|
}
|
|
|
|
auto operator*() const -> const TokenIndex& { return token_; }
|
|
|
|
using iterator_facade_base::operator-;
|
|
auto operator-(const TokenIterator& rhs) const -> int {
|
|
return token_.index - rhs.token_.index;
|
|
}
|
|
|
|
auto operator+=(int n) -> TokenIterator& {
|
|
token_.index += n;
|
|
return *this;
|
|
}
|
|
auto operator-=(int n) -> TokenIterator& {
|
|
token_.index -= n;
|
|
return *this;
|
|
}
|
|
|
|
// Prints the raw token index.
|
|
auto Print(llvm::raw_ostream& output) const -> void;
|
|
|
|
private:
|
|
friend class TokenizedBuffer;
|
|
|
|
TokenIndex token_;
|
|
};
|
|
|
|
// A diagnostic location translator that maps token locations into source
|
|
// buffer locations.
|
|
class TokenLocationTranslator
|
|
: public DiagnosticLocationTranslator<TokenIndex> {
|
|
public:
|
|
explicit TokenLocationTranslator(const TokenizedBuffer* buffer)
|
|
: buffer_(buffer) {}
|
|
|
|
// Map the given token into a diagnostic location.
|
|
auto GetLocation(TokenIndex token) -> DiagnosticLocation override;
|
|
|
|
private:
|
|
const TokenizedBuffer* buffer_;
|
|
};
|
|
|
|
// A buffer of tokenized Carbon source code.
|
|
//
|
|
// This is constructed by lexing the source code text into a series of tokens.
|
|
// The buffer provides lightweight handles to tokens and other lexed entities,
|
|
// as well as iterations to walk the sequence of tokens found in the buffer.
|
|
//
|
|
// Lexing errors result in a potentially incomplete sequence of tokens and
|
|
// `HasError` returning true.
|
|
class TokenizedBuffer : public Printable<TokenizedBuffer> {
|
|
public:
|
|
auto GetKind(TokenIndex token) const -> TokenKind;
|
|
auto GetLine(TokenIndex token) const -> LineIndex;
|
|
|
|
// Returns the 1-based line number.
|
|
auto GetLineNumber(TokenIndex token) const -> int;
|
|
|
|
// Returns the 1-based column number.
|
|
auto GetColumnNumber(TokenIndex token) const -> int;
|
|
|
|
// Returns the source text lexed into this token.
|
|
auto GetTokenText(TokenIndex token) const -> llvm::StringRef;
|
|
|
|
// Returns the identifier associated with this token. The token kind must be
|
|
// an `Identifier`.
|
|
auto GetIdentifier(TokenIndex token) const -> IdentifierId;
|
|
|
|
// Returns the value of an `IntLiteral()` token.
|
|
auto GetIntLiteral(TokenIndex token) const -> IntId;
|
|
|
|
// Returns the value of an `RealLiteral()` token.
|
|
auto GetRealLiteral(TokenIndex token) const -> RealId;
|
|
|
|
// Returns the value of a `StringLiteral()` token.
|
|
auto GetStringLiteral(TokenIndex token) const -> StringLiteralId;
|
|
|
|
// Returns the size specified in a `*TypeLiteral()` token.
|
|
auto GetTypeLiteralSize(TokenIndex token) const -> const llvm::APInt&;
|
|
|
|
// Returns the closing token matched with the given opening token.
|
|
//
|
|
// The given token must be an opening token kind.
|
|
auto GetMatchedClosingToken(TokenIndex opening_token) const -> TokenIndex;
|
|
|
|
// Returns the opening token matched with the given closing token.
|
|
//
|
|
// The given token must be a closing token kind.
|
|
auto GetMatchedOpeningToken(TokenIndex closing_token) const -> TokenIndex;
|
|
|
|
// Returns whether the given token has leading whitespace.
|
|
auto HasLeadingWhitespace(TokenIndex token) const -> bool;
|
|
// Returns whether the given token has trailing whitespace.
|
|
auto HasTrailingWhitespace(TokenIndex token) const -> bool;
|
|
|
|
// Returns whether the token was created as part of an error recovery effort.
|
|
//
|
|
// For example, a closing paren inserted to match an unmatched paren.
|
|
auto IsRecoveryToken(TokenIndex token) const -> bool;
|
|
|
|
// Returns the 1-based line number.
|
|
auto GetLineNumber(LineIndex line) const -> int;
|
|
|
|
// Returns the 1-based indentation column number.
|
|
auto GetIndentColumnNumber(LineIndex line) const -> int;
|
|
|
|
// Returns the next line handle.
|
|
auto GetNextLine(LineIndex line) const -> LineIndex;
|
|
|
|
// Returns the previous line handle.
|
|
auto GetPrevLine(LineIndex line) const -> LineIndex;
|
|
|
|
// Prints a description of the tokenized stream to the provided `raw_ostream`.
|
|
//
|
|
// It prints one line of information for each token in the buffer, including
|
|
// the kind of token, where it occurs within the source file, indentation for
|
|
// the associated line, the spelling of the token in source, and any
|
|
// additional information tracked such as which unique identifier it is or any
|
|
// matched grouping token.
|
|
//
|
|
// Each line is formatted as a YAML record:
|
|
//
|
|
// clang-format off
|
|
// ```
|
|
// token: { index: 0, kind: 'Semi', line: 1, column: 1, indent: 1, spelling: ';' }
|
|
// ```
|
|
// clang-format on
|
|
//
|
|
// This can be parsed as YAML using tools like `python-yq` combined with `jq`
|
|
// on the command line. The format is also reasonably amenable to other
|
|
// line-oriented shell tools from `grep` to `awk`.
|
|
auto Print(llvm::raw_ostream& output_stream) const -> void;
|
|
|
|
// Prints a description of a single token. See `Print` for details on the
|
|
// format.
|
|
auto PrintToken(llvm::raw_ostream& output_stream, TokenIndex token) const
|
|
-> void;
|
|
|
|
// Returns true if the buffer has errors that were detected at lexing time.
|
|
auto has_errors() const -> bool { return has_errors_; }
|
|
|
|
auto tokens() const -> llvm::iterator_range<TokenIterator> {
|
|
return llvm::make_range(TokenIterator(TokenIndex(0)),
|
|
TokenIterator(TokenIndex(token_infos_.size())));
|
|
}
|
|
|
|
auto size() const -> int { return token_infos_.size(); }
|
|
|
|
auto expected_parse_tree_size() const -> int {
|
|
return expected_parse_tree_size_;
|
|
}
|
|
|
|
auto source() const -> const SourceBuffer& { return *source_; }
|
|
|
|
private:
|
|
friend class Lexer;
|
|
friend class TokenLocationTranslator;
|
|
|
|
// A diagnostic location translator that maps token locations into source
|
|
// buffer locations.
|
|
class SourceBufferLocationTranslator
|
|
: public DiagnosticLocationTranslator<const char*> {
|
|
public:
|
|
explicit SourceBufferLocationTranslator(const TokenizedBuffer* buffer)
|
|
: buffer_(buffer) {}
|
|
|
|
// Map the given position within the source buffer into a diagnostic
|
|
// location.
|
|
auto GetLocation(const char* loc) -> DiagnosticLocation override;
|
|
|
|
private:
|
|
const TokenizedBuffer* buffer_;
|
|
};
|
|
|
|
// Specifies minimum widths to use when printing a token's fields via
|
|
// `printToken`.
|
|
struct PrintWidths {
|
|
// Widens `this` to the maximum of `this` and `new_width` for each
|
|
// dimension.
|
|
auto Widen(const PrintWidths& widths) -> void;
|
|
|
|
int index;
|
|
int kind;
|
|
int line;
|
|
int column;
|
|
int indent;
|
|
};
|
|
|
|
struct TokenInfo {
|
|
TokenKind kind;
|
|
|
|
// Whether the token has trailing whitespace.
|
|
bool has_trailing_space = false;
|
|
|
|
// Whether the token was injected artificially during error recovery.
|
|
bool is_recovery = false;
|
|
|
|
// LineIndex on which the TokenIndex starts.
|
|
LineIndex token_line;
|
|
|
|
// Zero-based byte offset of the token within its line.
|
|
int32_t column;
|
|
|
|
// We may have up to 32 bits of payload, based on the kind of token.
|
|
union {
|
|
static_assert(
|
|
sizeof(TokenIndex) <= sizeof(int32_t),
|
|
"Unable to pack token and identifier index into the same space!");
|
|
|
|
IdentifierId ident_id = IdentifierId::Invalid;
|
|
StringLiteralId string_literal_id;
|
|
IntId int_id;
|
|
RealId real_id;
|
|
TokenIndex closing_token;
|
|
TokenIndex opening_token;
|
|
int32_t error_length;
|
|
};
|
|
};
|
|
|
|
struct LineInfo {
|
|
// The length will always be assigned later. Indent may be assigned if
|
|
// non-zero.
|
|
explicit LineInfo(int64_t start)
|
|
: start(start),
|
|
length(static_cast<int32_t>(llvm::StringRef::npos)),
|
|
indent(0) {}
|
|
|
|
explicit LineInfo(int64_t start, int32_t length)
|
|
: start(start), length(length), indent(0) {}
|
|
|
|
// Zero-based byte offset of the start of the line within the source buffer
|
|
// provided.
|
|
int64_t start;
|
|
|
|
// The byte length of the line. Does not include the newline character (or a
|
|
// nul-terminator or EOF).
|
|
int32_t length;
|
|
|
|
// The byte offset from the start of the line of the first non-whitespace
|
|
// character.
|
|
int32_t indent;
|
|
};
|
|
|
|
// The constructor is merely responsible for trivial initialization of
|
|
// members. A working object of this type is built with `Lex::Lex` so that its
|
|
// return can indicate if an error was encountered while lexing.
|
|
explicit TokenizedBuffer(SharedValueStores& value_stores,
|
|
SourceBuffer& source)
|
|
: value_stores_(&value_stores), source_(&source) {}
|
|
|
|
auto GetLineInfo(LineIndex line) -> LineInfo&;
|
|
auto GetLineInfo(LineIndex line) const -> const LineInfo&;
|
|
auto AddLine(LineInfo info) -> LineIndex;
|
|
auto GetTokenInfo(TokenIndex token) -> TokenInfo&;
|
|
auto GetTokenInfo(TokenIndex token) const -> const TokenInfo&;
|
|
auto AddToken(TokenInfo info) -> TokenIndex;
|
|
auto GetTokenPrintWidths(TokenIndex token) const -> PrintWidths;
|
|
auto PrintToken(llvm::raw_ostream& output_stream, TokenIndex token,
|
|
PrintWidths widths) const -> void;
|
|
|
|
// Used to allocate computed string literals.
|
|
llvm::BumpPtrAllocator allocator_;
|
|
|
|
SharedValueStores* value_stores_;
|
|
SourceBuffer* source_;
|
|
|
|
llvm::SmallVector<TokenInfo> token_infos_;
|
|
|
|
llvm::SmallVector<LineInfo> line_infos_;
|
|
|
|
// Stores the computed value of string literals so that StringRefs are
|
|
// durable.
|
|
llvm::SmallVector<std::unique_ptr<std::string>> computed_strings_;
|
|
|
|
// The number of parse tree nodes that we expect to be created for the tokens
|
|
// in this buffer.
|
|
int expected_parse_tree_size_ = 0;
|
|
|
|
bool has_errors_ = false;
|
|
};
|
|
|
|
// A diagnostic emitter that uses positions within a source buffer's text as
|
|
// its source of location information.
|
|
using LexerDiagnosticEmitter = DiagnosticEmitter<const char*>;
|
|
|
|
// A diagnostic emitter that uses tokens as its source of location information.
|
|
using TokenDiagnosticEmitter = DiagnosticEmitter<TokenIndex>;
|
|
|
|
} // namespace Carbon::Lex
|
|
|
|
#endif // CARBON_TOOLCHAIN_LEX_TOKENIZED_BUFFER_H_
|