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: third_party/WebKit/Source/platform/heap/Heap.h

Issue 2090893003: Experiment: assert for stack-allocated GarbageCollected<>s. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix boundary condition Created 4 years, 6 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 | « no previous file | third_party/WebKit/Source/platform/heap/StackFrameDepth.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/Heap.h
diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
index 24dd654eb92b1ae47477925a87d3867f6f72798c..87d01fcc8e5a79bce2283acb02b3b0c93689405d 100644
--- a/third_party/WebKit/Source/platform/heap/Heap.h
+++ b/third_party/WebKit/Source/platform/heap/Heap.h
@@ -35,6 +35,7 @@
#include "platform/heap/GCInfo.h"
#include "platform/heap/HeapPage.h"
#include "platform/heap/PageMemory.h"
+#include "platform/heap/StackFrameDepth.h"
#include "platform/heap/ThreadState.h"
#include "platform/heap/Visitor.h"
#include "wtf/AddressSanitizer.h"
@@ -474,6 +475,11 @@ public:
protected:
GarbageCollected()
{
+ // A GarbageCollected<> object should not be stack allocated
+ // as it won't be prefixed with a (heap) header which would
+ // fail if the stack object ends up being stored in a traceable
+ // member field (say.)
+ DCHECK(!StackFrameDepth::isStackAddress(this));
}
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/heap/StackFrameDepth.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698