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

Unified Diff: Source/platform/heap/HeapTest.cpp

Issue 455363002: Oilpan: fix tracing of un-initialized part objects during conservative GCs. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased 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/Heap.cpp ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/heap/HeapTest.cpp
diff --git a/Source/platform/heap/HeapTest.cpp b/Source/platform/heap/HeapTest.cpp
index 018ae9a7dccc20c085903e22d5edd1ae951a661e..00370f9c5f79806fbabffb624b6b5edf7907c2ab 100644
--- a/Source/platform/heap/HeapTest.cpp
+++ b/Source/platform/heap/HeapTest.cpp
@@ -264,16 +264,6 @@ public:
m_count++;
}
- virtual void markConservatively(HeapObjectHeader* header) OVERRIDE
- {
- ASSERT_NOT_REACHED();
- }
-
- virtual void markConservatively(FinalizedHeapObjectHeader* header) OVERRIDE
- {
- ASSERT_NOT_REACHED();
- }
-
virtual void registerWeakMembers(const void*, const void*, WeakPointerCallback) OVERRIDE { }
virtual void registerWeakTable(const void*, EphemeronCallback, EphemeronCallback) OVERRIDE { }
#if ENABLE(ASSERT)
@@ -4849,12 +4839,19 @@ TEST(HeapTest, ObjectDeadBit)
DeadBitTester::test();
}
+static bool allocateAndReturnBool()
+{
+ Heap::collectGarbage(ThreadState::HeapPointersOnStack);
+ return true;
+}
+
class MixinWithGarbageCollectionInConstructor : public GarbageCollectedMixin {
public:
- MixinWithGarbageCollectionInConstructor()
+ MixinWithGarbageCollectionInConstructor() : m_dummy(allocateAndReturnBool())
{
- Heap::collectGarbage(ThreadState::HeapPointersOnStack);
}
+private:
+ bool m_dummy;
};
class ClassWithGarbageCollectingMixinConstructor
@@ -5049,4 +5046,24 @@ TEST(HeapTest, TraceIfNeeded)
}
}
+class PartObjectWithVirtualMethod {
+public:
+ virtual void trace(Visitor*) { }
+};
+
+class ObjectWithVirtualPartObject : public GarbageCollected<ObjectWithVirtualPartObject> {
+public:
+ ObjectWithVirtualPartObject() : m_dummy(allocateAndReturnBool()) { }
+ void trace(Visitor* visitor) { visitor->trace(m_part); }
+private:
+ bool m_dummy;
+ PartObjectWithVirtualMethod m_part;
+};
+
+TEST(HeapTest, PartObjectWithVirtualMethod)
+{
+ ObjectWithVirtualPartObject* object = new ObjectWithVirtualPartObject();
+ EXPECT_TRUE(object);
+}
+
} // namespace blink
« no previous file with comments | « Source/platform/heap/Heap.cpp ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698