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 #ifndef TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ | 5 #ifndef TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ |
6 #define TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ | 6 #define TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "clang/AST/AST.h" | 10 #include "clang/AST/AST.h" |
11 #include "clang/AST/RecursiveASTVisitor.h" | 11 #include "clang/AST/RecursiveASTVisitor.h" |
12 | 12 |
13 // This visitor collects the entry points for the checker. | 13 // This visitor collects the entry points for the checker. |
14 class CollectVisitor : public clang::RecursiveASTVisitor<CollectVisitor> { | 14 class CollectVisitor : public clang::RecursiveASTVisitor<CollectVisitor> { |
15 public: | 15 public: |
16 typedef std::vector<clang::CXXRecordDecl*> RecordVector; | 16 using RecordVector = std::vector<clang::CXXRecordDecl*>; |
17 typedef std::vector<clang::CXXMethodDecl*> MethodVector; | 17 using MethodVector = std::vector<clang::CXXMethodDecl*>; |
| 18 using SingletonVector = std::vector<clang::VarDecl*>; |
18 | 19 |
19 CollectVisitor(); | 20 explicit CollectVisitor(bool check_var_decls); |
20 | 21 |
21 RecordVector& record_decls(); | 22 RecordVector& record_decls(); |
22 MethodVector& trace_decls(); | 23 MethodVector& trace_decls(); |
23 | 24 |
| 25 const SingletonVector& singleton_decls() const; |
| 26 |
24 // Collect record declarations, including nested declarations. | 27 // Collect record declarations, including nested declarations. |
25 bool VisitCXXRecordDecl(clang::CXXRecordDecl* record); | 28 bool VisitCXXRecordDecl(clang::CXXRecordDecl* record); |
26 | 29 |
27 // Collect tracing method definitions, but don't traverse method bodies. | 30 // Collect tracing method definitions, but don't traverse method bodies. |
28 bool VisitCXXMethodDecl(clang::CXXMethodDecl* method); | 31 bool VisitCXXMethodDecl(clang::CXXMethodDecl* method); |
29 | 32 |
| 33 // Collect static singleton declarations, traverses the function body. |
| 34 bool VisitFunctionDecl(clang::FunctionDecl*); |
| 35 |
30 private: | 36 private: |
| 37 class LocalVarsVisitor : public clang::RecursiveASTVisitor<LocalVarsVisitor> { |
| 38 public: |
| 39 explicit LocalVarsVisitor(CollectVisitor* parent) : parent_(parent) {} |
| 40 |
| 41 bool VisitVarDecl(clang::VarDecl* decl); |
| 42 |
| 43 private: |
| 44 CollectVisitor* parent_; |
| 45 }; |
| 46 |
31 RecordVector record_decls_; | 47 RecordVector record_decls_; |
32 MethodVector trace_decls_; | 48 MethodVector trace_decls_; |
| 49 SingletonVector singleton_decls_; |
| 50 |
| 51 bool check_var_decls_; |
| 52 LocalVarsVisitor var_visitor_; |
33 }; | 53 }; |
34 | 54 |
35 #endif // TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ | 55 #endif // TOOLS_BLINK_GC_PLUGIN_COLLECT_VISITOR_H_ |
OLD | NEW |