Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //===-- AttrSubjectMatchRules.h - Attribute subject match rules -*- C++ -*-===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8.  
  9. #ifndef LLVM_CLANG_BASIC_ATTRSUBJECTMATCHRULES_H
  10. #define LLVM_CLANG_BASIC_ATTRSUBJECTMATCHRULES_H
  11.  
  12. #include "clang/Basic/SourceLocation.h"
  13. #include "llvm/ADT/DenseMap.h"
  14.  
  15. namespace clang {
  16. namespace attr {
  17.  
  18. /// A list of all the recognized kinds of attributes.
  19. enum SubjectMatchRule {
  20. #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) X,
  21. #include "clang/Basic/AttrSubMatchRulesList.inc"
  22.   SubjectMatchRule_Last = -1
  23. #define ATTR_MATCH_RULE(X, Spelling, IsAbstract) +1
  24. #include "clang/Basic/AttrSubMatchRulesList.inc"
  25. };
  26.  
  27. const char *getSubjectMatchRuleSpelling(SubjectMatchRule Rule);
  28.  
  29. using ParsedSubjectMatchRuleSet = llvm::DenseMap<int, SourceRange>;
  30.  
  31. } // end namespace attr
  32. } // end namespace clang
  33.  
  34. #endif
  35.