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

Unified Diff: Source/platform/heap/Visitor.h

Issue 455363002: Oilpan: fix tracing of un-initialized part objects during conservative GCs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | « Source/platform/heap/HeapTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/Visitor.h
diff --git a/Source/platform/heap/Visitor.h b/Source/platform/heap/Visitor.h
index 7a701fc38f7ad9416b1c05669ead56532ea3fc4c..1030e263ba2fa0f3852bc1a8e48e02500bd6518f 100644
--- a/Source/platform/heap/Visitor.h
+++ b/Source/platform/heap/Visitor.h
@@ -289,6 +289,11 @@ public:
template<typename T>
void trace(const T& t)
{
+ if (WTF::IsPolymorphic<T>::value) {
+ intptr_t vtable = *reinterpret_cast<const intptr_t*>(&t);
+ if (!vtable)
haraken 2014/08/11 10:44:02 Can we merge this check with vTableInitialized() i
Mads Ager (chromium) 2014/08/11 12:17:36 These are two different checks: The check that we
+ return;
+ }
const_cast<T&>(t).trace(this);
}
« no previous file with comments | « Source/platform/heap/HeapTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698