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

Unified Diff: tools/clang/blink_gc_plugin/tests/static_singleton.txt

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/tests/static_singleton.flags ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/clang/blink_gc_plugin/tests/static_singleton.txt
diff --git a/tools/clang/blink_gc_plugin/tests/static_singleton.txt b/tools/clang/blink_gc_plugin/tests/static_singleton.txt
new file mode 100644
index 0000000000000000000000000000000000000000..c591c711bb9e181cd5f1a4d006044821993b96ef
--- /dev/null
+++ b/tools/clang/blink_gc_plugin/tests/static_singleton.txt
@@ -0,0 +1,31 @@
+static_singleton.cpp:14:3: warning: [blink-gc] The static singleton 'object' contains one or more unsafe ScriptWrappable references
+ DEFINE_STATIC_LOCAL(HeapObject, object);
+ ^
+static_singleton.cpp:8:3: note: expanded from macro 'DEFINE_STATIC_LOCAL'
+ BLINK_STATIC_SINGLETON() \
+ ^
+./heap/stubs.h:192:3: note: expanded from macro 'BLINK_STATIC_SINGLETON'
+ __attribute__((annotate("blink_gc_singleton_type")))
+ ^
+note: [blink-gc] Embedded unsafe ScriptWrappable-derived field with type 'class blink::AScriptWrappable' located at 'b_ => a_'
+static_singleton.cpp:22:5: warning: [blink-gc] The static singleton 'object' contains one or more unsafe ScriptWrappable references
+ DEFINE_STATIC_LOCAL(HeapObject, object);
+ ^
+static_singleton.cpp:8:3: note: expanded from macro 'DEFINE_STATIC_LOCAL'
+ BLINK_STATIC_SINGLETON() \
+ ^
+./heap/stubs.h:192:3: note: expanded from macro 'BLINK_STATIC_SINGLETON'
+ __attribute__((annotate("blink_gc_singleton_type")))
+ ^
+note: [blink-gc] Embedded unsafe ScriptWrappable-derived field with type 'class blink::AScriptWrappable' located at 'b_ => a_'
+static_singleton.cpp:25:3: warning: [blink-gc] The static singleton 'object' contains one or more unsafe ScriptWrappable references
+ DEFINE_STATIC_LOCAL(HeapObject, object);
+ ^
+static_singleton.cpp:8:3: note: expanded from macro 'DEFINE_STATIC_LOCAL'
+ BLINK_STATIC_SINGLETON() \
+ ^
+./heap/stubs.h:192:3: note: expanded from macro 'BLINK_STATIC_SINGLETON'
+ __attribute__((annotate("blink_gc_singleton_type")))
+ ^
+note: [blink-gc] Embedded unsafe ScriptWrappable-derived field with type 'class blink::AScriptWrappable' located at 'b_ => a_'
+3 warnings generated.
« no previous file with comments | « tools/clang/blink_gc_plugin/tests/static_singleton.flags ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698