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

Unified Diff: Source/heap/Heap.h

Issue 207393003: Oilpan: Added gyp flag to dump points-to graph information from the Blink GC plugin. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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
Index: Source/heap/Heap.h
diff --git a/Source/heap/Heap.h b/Source/heap/Heap.h
index c84a0ce76f81da717d30a1754e83a1ff535940fd..eba955362a0441e795d4ffb8d2621ac63eeb5bcb 100644
--- a/Source/heap/Heap.h
+++ b/Source/heap/Heap.h
@@ -1072,9 +1072,13 @@ T* adoptRefCountedGarbageCollected(T* ptr)
#define GC_PLUGIN_IGNORE(bug) \
__attribute__((annotate("blink_gc_plugin_ignore")))
+
+#define GC_PLUGIN_IGNORE_CYCLE \
+ __attribute__((annotate("blink_gc_plugin_ignore_cycle")))
#else
#define STACK_ALLOCATED() DISALLOW_ALLOCATION()
#define GC_PLUGIN_IGNORE(bug)
+#define GC_PLUGIN_IGNORE_CYCLE
#endif
NO_SANITIZE_ADDRESS

Powered by Google App Engine
This is Rietveld 408576698