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

Unified Diff: tools/clang/blink_gc_plugin/CheckSingletonVisitor.h

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/CMakeLists.txt ('k') | tools/clang/blink_gc_plugin/CheckSingletonVisitor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/CheckSingletonVisitor.h
diff --git a/tools/clang/blink_gc_plugin/CheckSingletonVisitor.h b/tools/clang/blink_gc_plugin/CheckSingletonVisitor.h
new file mode 100644
index 0000000000000000000000000000000000000000..4e6df24f2b78ea0731581a3a0de92ed2644b8c3e
--- /dev/null
+++ b/tools/clang/blink_gc_plugin/CheckSingletonVisitor.h
@@ -0,0 +1,53 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_
+#define TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_
+
+#include <set>
+#include <utility>
+#include <vector>
+
+#include "clang/AST/AST.h"
+
+class RecordInfo;
+
+// This visitor checks that a persistent static singleton's type
+// is safe. Safety is currently defined as:
+// - the type doesn't derive from blink::ScriptWrappable.
+// - the type doesn't contain a ScriptWrappable-derived member,
+// transitively.
+//
+class CheckSingletonVisitor final {
+ public:
+ using Errors = std::vector<std::pair<std::string, const clang::Type*>>;
+
+ CheckSingletonVisitor();
+ ~CheckSingletonVisitor();
+
+ const Errors& illegal_types() const { return illegal_types_; }
+
+ bool CheckIfSafe(RecordInfo*, const clang::Type*);
+
+ bool VisitType(clang::Type*);
+
+ private:
+ void CheckScriptWrappable(const std::string&, const clang::Type*);
+
+ bool IsScriptWrappable(RecordInfo*);
+ bool InheritsScriptWrappable(clang::CXXRecordDecl*);
+
+ void PushType(const clang::Type*);
+ void PushType(const std::string&, const clang::Type*);
+
+ std::string GenerateErrorContext(const std::string&);
+
+ Errors illegal_types_;
+ RecordInfo* info_ = nullptr;
+ std::vector<std::pair<std::string, const clang::Type*>> types_stack_;
+ std::set<const clang::Type*> already_seen_;
+ std::vector<std::string> error_context_;
+};
+
+#endif // TOOLS_BLINK_GC_PLUGIN_CHECK_SINGLETON_VISITOR_H_
« no previous file with comments | « tools/clang/blink_gc_plugin/CMakeLists.txt ('k') | tools/clang/blink_gc_plugin/CheckSingletonVisitor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698