node_kind.cpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. void CheckNodeMatchesLexerToken(NodeKind node_kind, Lex::TokenKind token_kind,
  43. bool has_error) {
  44. switch (node_kind) {
  45. // Use `CARBON_LOG CARBON_ANY_TOKEN` to discover which combinations happen
  46. // in practice.
  47. #define CARBON_LOG \
  48. llvm::errs() << "ZZZ: Created parse node with NodeKind " << node_kind \
  49. << " and has_error " << has_error << " for lexical token " \
  50. << token_kind << "\n";
  51. #define CARBON_ANY_TOKEN return;
  52. #define CARBON_TOKEN(Expected) \
  53. if (token_kind == Lex::TokenKind::Expected) { \
  54. return; \
  55. }
  56. #define CARBON_IF_ERROR(MatchActions) \
  57. if (has_error) { \
  58. MatchActions \
  59. }
  60. #define CARBON_CASE(Name, MatchActions) \
  61. case NodeKind::Name: \
  62. MatchActions; \
  63. break;
  64. #define CARBON_PARSE_NODE_KIND_BRACKET(Name, BracketName, MatchActions) \
  65. CARBON_CASE(Name, MatchActions)
  66. #define CARBON_PARSE_NODE_KIND_CHILD_COUNT(Name, Size, MatchActions) \
  67. CARBON_CASE(Name, MatchActions)
  68. #include "toolchain/parse/node_kind.def"
  69. #undef CARBON_LOG
  70. #undef CARBON_CASE
  71. }
  72. CARBON_FATAL() << "Created parse node with NodeKind " << node_kind
  73. << " and has_error " << has_error
  74. << " for unexpected lexical token " << token_kind;
  75. }
  76. } // namespace Carbon::Parse