context.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #ifndef CARBON_TOOLCHAIN_PARSE_CONTEXT_H_
  5. #define CARBON_TOOLCHAIN_PARSE_CONTEXT_H_
  6. #include <optional>
  7. #include "common/check.h"
  8. #include "common/vlog.h"
  9. #include "toolchain/lex/token_kind.h"
  10. #include "toolchain/lex/tokenized_buffer.h"
  11. #include "toolchain/parse/node_kind.h"
  12. #include "toolchain/parse/precedence.h"
  13. #include "toolchain/parse/state.h"
  14. #include "toolchain/parse/tree.h"
  15. namespace Carbon::Parse {
  16. // An amount by which to look ahead of the current token. Lookahead should be
  17. // used sparingly, and unbounded lookahead should be avoided.
  18. //
  19. // TODO: Decide whether we want to avoid lookahead altogether.
  20. //
  21. // NOLINTNEXTLINE(performance-enum-size): Deliberately matches index size.
  22. enum class Lookahead : int32_t {
  23. CurrentToken = 0,
  24. NextToken = 1,
  25. };
  26. // Context and shared functionality for parser handlers. See state.def for state
  27. // documentation.
  28. class Context {
  29. public:
  30. // Possible operator fixities for errors.
  31. enum class OperatorFixity : int8_t { Prefix, Infix, Postfix };
  32. // Possible return values for FindListToken.
  33. enum class ListTokenKind : int8_t { Comma, Close, CommaClose };
  34. // Used for restricting ordering of `package` and `import` directives.
  35. enum class PackagingState : int8_t {
  36. FileStart,
  37. InImports,
  38. AfterNonPackagingDecl,
  39. // A warning about `import` placement has been issued so we don't keep
  40. // issuing more (when `import` is repeated) until more non-`import`
  41. // declarations come up.
  42. InImportsAfterNonPackagingDecl,
  43. };
  44. // Used to track state on state_stack_.
  45. struct StateStackEntry : public Printable<StateStackEntry> {
  46. // Prints state information for verbose output.
  47. auto Print(llvm::raw_ostream& output) const -> void {
  48. output << state << " @" << token << " subtree_start=" << subtree_start
  49. << " has_error=" << has_error;
  50. };
  51. // The state.
  52. State state;
  53. // Set to true to indicate that an error was found, and that contextual
  54. // error recovery may be needed.
  55. bool has_error = false;
  56. // Precedence information used by expression states in order to determine
  57. // operator precedence. The ambient_precedence deals with how the expression
  58. // should interact with outside context, while the lhs_precedence is
  59. // specific to the lhs of an operator expression.
  60. PrecedenceGroup ambient_precedence = PrecedenceGroup::ForTopLevelExpr();
  61. PrecedenceGroup lhs_precedence = PrecedenceGroup::ForTopLevelExpr();
  62. // A token providing context based on the subtree. This will typically be
  63. // the first token in the subtree, but may sometimes be a token within. It
  64. // will typically be used for the subtree's root node.
  65. Lex::TokenIndex token;
  66. // The offset within the Tree of the subtree start.
  67. int32_t subtree_start;
  68. };
  69. // We expect StateStackEntry to fit into 12 bytes:
  70. // state = 1 byte
  71. // has_error = 1 byte
  72. // ambient_precedence = 1 byte
  73. // lhs_precedence = 1 byte
  74. // token = 4 bytes
  75. // subtree_start = 4 bytes
  76. // If it becomes bigger, it'd be worth examining better packing; it should be
  77. // feasible to pack the 1-byte entries more tightly.
  78. static_assert(sizeof(StateStackEntry) == 12,
  79. "StateStackEntry has unexpected size!");
  80. explicit Context(Tree& tree, Lex::TokenizedBuffer& tokens,
  81. Lex::TokenDiagnosticEmitter& emitter,
  82. llvm::raw_ostream* vlog_stream);
  83. // Adds a node to the parse tree that has no children (a leaf).
  84. auto AddLeafNode(NodeKind kind, Lex::TokenIndex token, bool has_error = false)
  85. -> void;
  86. // Adds a node to the parse tree that has children.
  87. auto AddNode(NodeKind kind, Lex::TokenIndex token, int subtree_start,
  88. bool has_error) -> void;
  89. // Replaces the placeholder node at the indicated position with a leaf node.
  90. //
  91. // To reserve a position in the parse tree, you may add a placeholder parse
  92. // node using code like:
  93. // ```
  94. // context.PushState(State::WillFillInPlaceholder);
  95. // context.AddLeafNode(NodeKind::Placeholder, *context.position());
  96. // ```
  97. // It may be replaced with the intended leaf parse node with code like:
  98. // ```
  99. // auto HandleWillFillInPlaceholder(Context& context) -> void {
  100. // auto state = context.PopState();
  101. // context.ReplacePlaceholderNode(state.subtree_start, /* replacement */);
  102. // }
  103. // ```
  104. auto ReplacePlaceholderNode(int32_t position, NodeKind kind,
  105. Lex::TokenIndex token, bool has_error = false)
  106. -> void;
  107. // Returns the current position and moves past it.
  108. auto Consume() -> Lex::TokenIndex { return *(position_++); }
  109. // Consumes the current token. Does not return it.
  110. auto ConsumeAndDiscard() -> void { ++position_; }
  111. // Parses an open paren token, possibly diagnosing if necessary. Creates a
  112. // leaf parse node of the specified start kind. The default_token is used when
  113. // there's no open paren. Returns the open paren token if it was found.
  114. auto ConsumeAndAddOpenParen(Lex::TokenIndex default_token,
  115. NodeKind start_kind)
  116. -> std::optional<Lex::TokenIndex>;
  117. // Parses a closing symbol corresponding to the opening symbol
  118. // `expected_open`, possibly skipping forward and diagnosing if necessary.
  119. // Creates a parse node of the specified close kind. If `expected_open` is not
  120. // an opening symbol, the parse node will be associated with `state.token`,
  121. // no input will be consumed, and no diagnostic will be emitted.
  122. auto ConsumeAndAddCloseSymbol(Lex::TokenIndex expected_open,
  123. StateStackEntry state, NodeKind close_kind)
  124. -> void;
  125. // Composes `ConsumeIf` and `AddLeafNode`, returning false when ConsumeIf
  126. // fails.
  127. auto ConsumeAndAddLeafNodeIf(Lex::TokenKind token_kind, NodeKind node_kind)
  128. -> bool;
  129. // Returns the current position and moves past it. Requires the token is the
  130. // expected kind.
  131. auto ConsumeChecked(Lex::TokenKind kind) -> Lex::TokenIndex;
  132. // If the current position's token matches this `Kind`, returns it and
  133. // advances to the next position. Otherwise returns an empty optional.
  134. auto ConsumeIf(Lex::TokenKind kind) -> std::optional<Lex::TokenIndex>;
  135. // Find the next token of any of the given kinds at the current bracketing
  136. // level.
  137. auto FindNextOf(std::initializer_list<Lex::TokenKind> desired_kinds)
  138. -> std::optional<Lex::TokenIndex>;
  139. // If the token is an opening symbol for a matched group, skips to the matched
  140. // closing symbol and returns true. Otherwise, returns false.
  141. auto SkipMatchingGroup() -> bool;
  142. // Skips forward to move past the likely end of a declaration or statement.
  143. //
  144. // Looks forward, skipping over any matched symbol groups, to find the next
  145. // position that is likely past the end of a declaration or statement. This
  146. // is a heuristic and should only be called when skipping past parse errors.
  147. //
  148. // The strategy for recognizing when we have likely passed the end of a
  149. // declaration or statement:
  150. // - If we get to a close curly brace, we likely ended the entire context.
  151. // - If we get to a semicolon, that should have ended the declaration or
  152. // statement.
  153. // - If we get to a new line from the `SkipRoot` token, but with the same or
  154. // less indentation, there is likely a missing semicolon. Continued
  155. // declarations or statements across multiple lines should be indented.
  156. //
  157. // Returns the last token consumed.
  158. auto SkipPastLikelyEnd(Lex::TokenIndex skip_root) -> Lex::TokenIndex;
  159. // Skip forward to the given token. Verifies that it is actually forward.
  160. auto SkipTo(Lex::TokenIndex t) -> void;
  161. // Returns true if the current token satisfies the lexical validity rules
  162. // for an infix operator.
  163. auto IsLexicallyValidInfixOperator() -> bool;
  164. // Determines whether the current trailing operator should be treated as
  165. // infix.
  166. auto IsTrailingOperatorInfix() -> bool;
  167. // Diagnoses whether the current token is not written properly for the given
  168. // fixity. For example, because mandatory whitespace is missing. Regardless of
  169. // whether there's an error, it's expected that parsing continues.
  170. auto DiagnoseOperatorFixity(OperatorFixity fixity) -> void;
  171. // If the current position is a `,`, consumes it, adds the provided token, and
  172. // returns `Comma`. Returns `Close` if the current position is close_token
  173. // (for example, `)`). `CommaClose` indicates it found both (for example,
  174. // `,)`). Handles cases where invalid tokens are present by advancing the
  175. // position, and may emit errors. Pass already_has_error in order to suppress
  176. // duplicate errors.
  177. auto ConsumeListToken(NodeKind comma_kind, Lex::TokenKind close_kind,
  178. bool already_has_error) -> ListTokenKind;
  179. // Gets the kind of the next token to be consumed. If `lookahead` is
  180. // provided, it specifies which token to inspect.
  181. auto PositionKind(Lookahead lookahead = Lookahead::CurrentToken) const
  182. -> Lex::TokenKind {
  183. return tokens_->GetKind(position_[static_cast<int32_t>(lookahead)]);
  184. }
  185. // Tests whether the next token to be consumed is of the specified kind. If
  186. // `lookahead` is provided, it specifies which token to inspect.
  187. auto PositionIs(Lex::TokenKind kind,
  188. Lookahead lookahead = Lookahead::CurrentToken) const -> bool {
  189. return PositionKind(lookahead) == kind;
  190. }
  191. // Pops the state and keeps the value for inspection.
  192. auto PopState() -> StateStackEntry {
  193. auto back = state_stack_.pop_back_val();
  194. CARBON_VLOG() << "Pop " << state_stack_.size() << ": " << back << "\n";
  195. return back;
  196. }
  197. // Pops the state and discards it.
  198. auto PopAndDiscardState() -> void {
  199. CARBON_VLOG() << "PopAndDiscard " << state_stack_.size() - 1 << ": "
  200. << state_stack_.back() << "\n";
  201. state_stack_.pop_back();
  202. }
  203. // Pushes a new state with the current position for context.
  204. auto PushState(State state) -> void { PushState(state, *position_); }
  205. // Pushes a new state with a specific token for context. Used when forming a
  206. // new subtree when the current position isn't the start of the subtree.
  207. auto PushState(State state, Lex::TokenIndex token) -> void {
  208. PushState({.state = state, .token = token, .subtree_start = tree_->size()});
  209. }
  210. // Pushes a new expression state with specific precedence.
  211. auto PushStateForExpr(PrecedenceGroup ambient_precedence) -> void {
  212. PushState({.state = State::Expr,
  213. .ambient_precedence = ambient_precedence,
  214. .token = *position_,
  215. .subtree_start = tree_->size()});
  216. }
  217. // Pushes a new state with detailed precedence for expression resume states.
  218. auto PushStateForExprLoop(State state, PrecedenceGroup ambient_precedence,
  219. PrecedenceGroup lhs_precedence) -> void {
  220. PushState({.state = state,
  221. .ambient_precedence = ambient_precedence,
  222. .lhs_precedence = lhs_precedence,
  223. .token = *position_,
  224. .subtree_start = tree_->size()});
  225. }
  226. // Pushes a constructed state onto the stack.
  227. auto PushState(StateStackEntry state) -> void {
  228. CARBON_VLOG() << "Push " << state_stack_.size() << ": " << state << "\n";
  229. state_stack_.push_back(state);
  230. CARBON_CHECK(state_stack_.size() < (1 << 20))
  231. << "Excessive stack size: likely infinite loop";
  232. }
  233. // Pushes a constructed state onto the stack, with a different parse state.
  234. auto PushState(StateStackEntry state_entry, State parse_state) -> void {
  235. state_entry.state = parse_state;
  236. PushState(state_entry);
  237. }
  238. // Propagates an error up the state stack, to the parent state.
  239. auto ReturnErrorOnState() -> void { state_stack_.back().has_error = true; }
  240. // Emits a diagnostic for a declaration missing a semi.
  241. auto EmitExpectedDeclSemi(Lex::TokenKind expected_kind) -> void;
  242. // Emits a diagnostic for a declaration missing a semi or definition.
  243. auto EmitExpectedDeclSemiOrDefinition(Lex::TokenKind expected_kind) -> void;
  244. // Handles error recovery in a declaration, particularly before any possible
  245. // definition has started (although one could be present). Recover to a
  246. // semicolon when it makes sense as a possible end, otherwise use the
  247. // introducer token for the error.
  248. auto RecoverFromDeclError(StateStackEntry state, NodeKind parse_node_kind,
  249. bool skip_past_likely_end) -> void;
  250. // Sets the package directive information. Called at most once.
  251. auto set_packaging_directive(Tree::PackagingNames packaging_names,
  252. Tree::ApiOrImpl api_or_impl) -> void {
  253. CARBON_CHECK(!tree_->packaging_directive_);
  254. tree_->packaging_directive_ = {.names = packaging_names,
  255. .api_or_impl = api_or_impl};
  256. }
  257. // Adds an import.
  258. auto AddImport(Tree::PackagingNames package) -> void {
  259. tree_->imports_.push_back(package);
  260. }
  261. // Prints information for a stack dump.
  262. auto PrintForStackDump(llvm::raw_ostream& output) const -> void;
  263. auto tree() const -> const Tree& { return *tree_; }
  264. auto tokens() const -> const Lex::TokenizedBuffer& { return *tokens_; }
  265. auto emitter() -> Lex::TokenDiagnosticEmitter& { return *emitter_; }
  266. auto position() -> Lex::TokenIterator& { return position_; }
  267. auto position() const -> Lex::TokenIterator { return position_; }
  268. auto state_stack() -> llvm::SmallVector<StateStackEntry>& {
  269. return state_stack_;
  270. }
  271. auto state_stack() const -> const llvm::SmallVector<StateStackEntry>& {
  272. return state_stack_;
  273. }
  274. auto packaging_state() const -> PackagingState { return packaging_state_; }
  275. auto set_packaging_state(PackagingState packaging_state) -> void {
  276. packaging_state_ = packaging_state;
  277. }
  278. auto first_non_packaging_token() const -> Lex::TokenIndex {
  279. return first_non_packaging_token_;
  280. }
  281. auto set_first_non_packaging_token(Lex::TokenIndex token) -> void {
  282. CARBON_CHECK(!first_non_packaging_token_.is_valid());
  283. first_non_packaging_token_ = token;
  284. }
  285. private:
  286. // Prints a single token for a stack dump. Used by PrintForStackDump.
  287. auto PrintTokenForStackDump(llvm::raw_ostream& output,
  288. Lex::TokenIndex token) const -> void;
  289. Tree* tree_;
  290. Lex::TokenizedBuffer* tokens_;
  291. Lex::TokenDiagnosticEmitter* emitter_;
  292. // Whether to print verbose output.
  293. llvm::raw_ostream* vlog_stream_;
  294. // The current position within the token buffer.
  295. Lex::TokenIterator position_;
  296. // The FileEnd token.
  297. Lex::TokenIterator end_;
  298. llvm::SmallVector<StateStackEntry> state_stack_;
  299. // The current packaging state, whether `import`/`package` are allowed.
  300. PackagingState packaging_state_ = PackagingState::FileStart;
  301. // The first non-packaging token, starting as invalid. Used for packaging
  302. // state warnings.
  303. Lex::TokenIndex first_non_packaging_token_ = Lex::TokenIndex::Invalid;
  304. };
  305. #define CARBON_PARSE_STATE(Name) auto Handle##Name(Context& context) -> void;
  306. #include "toolchain/parse/state.def"
  307. } // namespace Carbon::Parse
  308. #endif // CARBON_TOOLCHAIN_PARSE_CONTEXT_H_