OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "Config.h" | 5 #include "Config.h" |
6 | 6 |
7 #include <cassert> | 7 #include <cassert> |
8 | 8 |
9 #include "clang/AST/AST.h" | 9 #include "clang/AST/AST.h" |
10 | 10 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 void Config::UseLegacyNames() { | 42 void Config::UseLegacyNames() { |
43 kCreateName = legacy::kCreateName; | 43 kCreateName = legacy::kCreateName; |
44 kTraceName = legacy::kTraceName; | 44 kTraceName = legacy::kTraceName; |
45 kFinalizeName = legacy::kFinalizeName; | 45 kFinalizeName = legacy::kFinalizeName; |
46 kTraceAfterDispatchName = legacy::kTraceAfterDispatchName; | 46 kTraceAfterDispatchName = legacy::kTraceAfterDispatchName; |
47 kRegisterWeakMembersName = legacy::kRegisterWeakMembersName; | 47 kRegisterWeakMembersName = legacy::kRegisterWeakMembersName; |
48 kAdjustAndMarkName = legacy::kAdjustAndMarkName; | 48 kAdjustAndMarkName = legacy::kAdjustAndMarkName; |
49 kIsHeapObjectAliveName = legacy::kIsHeapObjectAliveName; | 49 kIsHeapObjectAliveName = legacy::kIsHeapObjectAliveName; |
50 } | 50 } |
51 | 51 |
| 52 bool Config::IsAnnotated(clang::Decl* decl, const std::string& anno) { |
| 53 if (!decl->hasAttrs()) |
| 54 return false; |
| 55 |
| 56 for (const clang::Attr* attr : decl->getAttrs()) { |
| 57 const clang::AnnotateAttr* annotation = dyn_cast<clang::AnnotateAttr>(attr); |
| 58 if (annotation && annotation->getAnnotation() == anno) |
| 59 return true; |
| 60 } |
| 61 return false; |
| 62 } |
| 63 |
52 bool Config::IsTemplateInstantiation(CXXRecordDecl* record) { | 64 bool Config::IsTemplateInstantiation(CXXRecordDecl* record) { |
53 ClassTemplateSpecializationDecl* spec = | 65 ClassTemplateSpecializationDecl* spec = |
54 dyn_cast<clang::ClassTemplateSpecializationDecl>(record); | 66 dyn_cast<clang::ClassTemplateSpecializationDecl>(record); |
55 if (!spec) | 67 if (!spec) |
56 return false; | 68 return false; |
57 switch (spec->getTemplateSpecializationKind()) { | 69 switch (spec->getTemplateSpecializationKind()) { |
58 case TSK_ImplicitInstantiation: | 70 case TSK_ImplicitInstantiation: |
59 case TSK_ExplicitInstantiationDefinition: | 71 case TSK_ExplicitInstantiationDefinition: |
60 return true; | 72 return true; |
61 case TSK_Undeclared: | 73 case TSK_Undeclared: |
62 case TSK_ExplicitSpecialization: | 74 case TSK_ExplicitSpecialization: |
63 return false; | 75 return false; |
64 // TODO: unsupported cases. | 76 // TODO: unsupported cases. |
65 case TSK_ExplicitInstantiationDeclaration: | 77 case TSK_ExplicitInstantiationDeclaration: |
66 return false; | 78 return false; |
67 } | 79 } |
68 assert(false && "Unknown template specialization kind"); | 80 assert(false && "Unknown template specialization kind"); |
69 return false; | 81 return false; |
70 } | 82 } |
OLD | NEW |