node_kind.cpp 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #include "toolchain/parse/node_kind.h"
  5. #include "common/check.h"
  6. namespace Carbon::Parse {
  7. CARBON_DEFINE_ENUM_CLASS_NAMES(NodeKind) = {
  8. #define CARBON_PARSE_NODE_KIND(Name) CARBON_ENUM_CLASS_NAME_STRING(Name)
  9. #include "toolchain/parse/node_kind.def"
  10. };
  11. auto NodeKind::has_bracket() const -> bool {
  12. static constexpr bool HasBracket[] = {
  13. #define CARBON_PARSE_NODE_KIND_BRACKET(...) true,
  14. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(...) false,
  15. #include "toolchain/parse/node_kind.def"
  16. };
  17. return HasBracket[AsInt()];
  18. }
  19. auto NodeKind::bracket() const -> NodeKind {
  20. // Nodes are never self-bracketed, so we use that for nodes that instead set
  21. // child_count.
  22. static constexpr NodeKind Bracket[] = {
  23. #define CARBON_PARSE_NODE_KIND_BRACKET(Name, BracketName, ...) \
  24. NodeKind::BracketName,
  25. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, ...) NodeKind::Name,
  26. #include "toolchain/parse/node_kind.def"
  27. };
  28. auto bracket = Bracket[AsInt()];
  29. CARBON_CHECK(bracket != *this) << *this;
  30. return bracket;
  31. }
  32. auto NodeKind::child_count() const -> int32_t {
  33. static constexpr int32_t ChildCount[] = {
  34. #define CARBON_PARSE_NODE_KIND_BRACKET(...) -1,
  35. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, Size, ...) Size,
  36. #include "toolchain/parse/node_kind.def"
  37. };
  38. auto child_count = ChildCount[AsInt()];
  39. CARBON_CHECK(child_count >= 0) << *this;
  40. return child_count;
  41. }
  42. auto NodeKind::CheckMatchesTokenKind(Lex::TokenKind token_kind, bool has_error)
  43. -> void {
  44. static constexpr Lex::TokenKind TokenIfValid[] = {
  45. #define CARBON_IF_VALID(LexTokenKind) LexTokenKind
  46. #define CARBON_PARSE_NODE_KIND_BRACKET(Name, BracketName, LexTokenKind) \
  47. Lex::TokenKind::LexTokenKind,
  48. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, Size, LexTokenKind) \
  49. Lex::TokenKind::LexTokenKind,
  50. #include "toolchain/parse/node_kind.def"
  51. };
  52. static constexpr Lex::TokenKind TokenIfError[] = {
  53. #define CARBON_IF_VALID(LexTokenKind) Error
  54. #define CARBON_PARSE_NODE_KIND_BRACKET(Name, BracketName, LexTokenKind) \
  55. Lex::TokenKind::LexTokenKind,
  56. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, Size, LexTokenKind) \
  57. Lex::TokenKind::LexTokenKind,
  58. #include "toolchain/parse/node_kind.def"
  59. };
  60. Lex::TokenKind expected_token_kind =
  61. has_error ? TokenIfError[AsInt()] : TokenIfValid[AsInt()];
  62. // Error indicates that the kind shouldn't be enforced.
  63. CARBON_CHECK(Lex::TokenKind::Error == expected_token_kind ||
  64. token_kind == expected_token_kind)
  65. << "Created parse node with NodeKind " << *this << " and has_error "
  66. << has_error << " for lexical token kind " << token_kind
  67. << ", but expected token kind " << expected_token_kind;
  68. }
  69. } // namespace Carbon::Parse