Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: tools/clang/blink_gc_plugin/CollectVisitor.cpp

Issue 2696713003: blink_gc_plugin: detect singletons with embedded ScriptWrappables.
Patch Set: non-copying iteration Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/clang/blink_gc_plugin/CollectVisitor.h ('k') | tools/clang/blink_gc_plugin/Config.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/CollectVisitor.cpp
diff --git a/tools/clang/blink_gc_plugin/CollectVisitor.cpp b/tools/clang/blink_gc_plugin/CollectVisitor.cpp
index 203e8adf24427a5fcb196f893feb1737d6caf41a..cae961e0cb9838f3e10e963f5da603c7b26a2154 100644
--- a/tools/clang/blink_gc_plugin/CollectVisitor.cpp
+++ b/tools/clang/blink_gc_plugin/CollectVisitor.cpp
@@ -8,8 +8,8 @@
using namespace clang;
-CollectVisitor::CollectVisitor() {
-}
+CollectVisitor::CollectVisitor(bool check_var_decls)
+ : check_var_decls_(check_var_decls), var_visitor_(this) {}
CollectVisitor::RecordVector& CollectVisitor::record_decls() {
return record_decls_;
@@ -19,6 +19,10 @@ CollectVisitor::MethodVector& CollectVisitor::trace_decls() {
return trace_decls_;
}
+const CollectVisitor::SingletonVector& CollectVisitor::singleton_decls() const {
+ return singleton_decls_;
+}
+
bool CollectVisitor::VisitCXXRecordDecl(CXXRecordDecl* record) {
if (record->hasDefinition() && record->isCompleteDefinition())
record_decls_.push_back(record);
@@ -30,3 +34,22 @@ bool CollectVisitor::VisitCXXMethodDecl(CXXMethodDecl* method) {
trace_decls_.push_back(method);
return true;
}
+
+bool CollectVisitor::LocalVarsVisitor::VisitVarDecl(VarDecl* decl) {
+ if (Config::IsStaticSingleton(decl) && !Config::IsIgnoreAnnotated(decl) &&
+ decl->isStaticLocal())
+ parent_->singleton_decls_.push_back(decl);
+ return true;
+}
+
+bool CollectVisitor::VisitFunctionDecl(FunctionDecl* decl) {
+ if (!check_var_decls_)
+ return true;
+
+ if (!decl->isThisDeclarationADefinition())
+ return true;
+
+ if (Stmt* body = decl->getBody())
+ var_visitor_.TraverseStmt(body);
+ return true;
+}
« no previous file with comments | « tools/clang/blink_gc_plugin/CollectVisitor.h ('k') | tools/clang/blink_gc_plugin/Config.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698