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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/platform/heap/Heap.cpp ('k') | Source/platform/heap/Visitor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ASSERT(header->payload()); 257 ASSERT(header->payload());
258 m_count++; 258 m_count++;
259 } 259 }
260 260
261 virtual void mark(FinalizedHeapObjectHeader* header, TraceCallback callback) OVERRIDE 261 virtual void mark(FinalizedHeapObjectHeader* header, TraceCallback callback) OVERRIDE
262 { 262 {
263 ASSERT(header->payload()); 263 ASSERT(header->payload());
264 m_count++; 264 m_count++;
265 } 265 }
266 266
267 virtual void markConservatively(HeapObjectHeader* header) OVERRIDE
268 {
269 ASSERT_NOT_REACHED();
270 }
271
272 virtual void markConservatively(FinalizedHeapObjectHeader* header) OVERRIDE
273 {
274 ASSERT_NOT_REACHED();
275 }
276
277 virtual void registerWeakMembers(const void*, const void*, WeakPointerCallba ck) OVERRIDE { } 267 virtual void registerWeakMembers(const void*, const void*, WeakPointerCallba ck) OVERRIDE { }
278 virtual void registerWeakTable(const void*, EphemeronCallback, EphemeronCall back) OVERRIDE { } 268 virtual void registerWeakTable(const void*, EphemeronCallback, EphemeronCall back) OVERRIDE { }
279 #if ENABLE(ASSERT) 269 #if ENABLE(ASSERT)
280 virtual bool weakTableRegistered(const void*) OVERRIDE { return false; } 270 virtual bool weakTableRegistered(const void*) OVERRIDE { return false; }
281 #endif 271 #endif
282 virtual void registerWeakCell(void**, WeakPointerCallback) OVERRIDE { } 272 virtual void registerWeakCell(void**, WeakPointerCallback) OVERRIDE { }
283 virtual bool isMarked(const void*) OVERRIDE { return false; } 273 virtual bool isMarked(const void*) OVERRIDE { return false; }
284 274
285 FOR_EACH_TYPED_HEAP(DEFINE_VISITOR_METHODS) 275 FOR_EACH_TYPED_HEAP(DEFINE_VISITOR_METHODS)
286 276
(...skipping 4555 matching lines...) Expand 10 before | Expand all | Expand 10 after
4842 static volatile uintptr_t s_workerObjectPointer; 4832 static volatile uintptr_t s_workerObjectPointer;
4843 }; 4833 };
4844 4834
4845 volatile uintptr_t DeadBitTester::s_workerObjectPointer = 0; 4835 volatile uintptr_t DeadBitTester::s_workerObjectPointer = 0;
4846 4836
4847 TEST(HeapTest, ObjectDeadBit) 4837 TEST(HeapTest, ObjectDeadBit)
4848 { 4838 {
4849 DeadBitTester::test(); 4839 DeadBitTester::test();
4850 } 4840 }
4851 4841
4842 static bool allocateAndReturnBool()
4843 {
4844 Heap::collectGarbage(ThreadState::HeapPointersOnStack);
4845 return true;
4846 }
4847
4852 class MixinWithGarbageCollectionInConstructor : public GarbageCollectedMixin { 4848 class MixinWithGarbageCollectionInConstructor : public GarbageCollectedMixin {
4853 public: 4849 public:
4854 MixinWithGarbageCollectionInConstructor() 4850 MixinWithGarbageCollectionInConstructor() : m_dummy(allocateAndReturnBool())
4855 { 4851 {
4856 Heap::collectGarbage(ThreadState::HeapPointersOnStack);
4857 } 4852 }
4853 private:
4854 bool m_dummy;
4858 }; 4855 };
4859 4856
4860 class ClassWithGarbageCollectingMixinConstructor 4857 class ClassWithGarbageCollectingMixinConstructor
4861 : public GarbageCollected<ClassWithGarbageCollectingMixinConstructor> 4858 : public GarbageCollected<ClassWithGarbageCollectingMixinConstructor>
4862 , public MixinWithGarbageCollectionInConstructor { 4859 , public MixinWithGarbageCollectionInConstructor {
4863 USING_GARBAGE_COLLECTED_MIXIN(ClassWithGarbageCollectingMixinConstructor); 4860 USING_GARBAGE_COLLECTED_MIXIN(ClassWithGarbageCollectingMixinConstructor);
4864 public: 4861 public:
4865 ClassWithGarbageCollectingMixinConstructor() : m_wrapper(IntWrapper::create( 32)) 4862 ClassWithGarbageCollectingMixinConstructor() : m_wrapper(IntWrapper::create( 32))
4866 { 4863 {
4867 } 4864 }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
5042 5039
5043 { 5040 {
5044 TraceIfNeededTester<HeapVector<Member<SimpleObject> > >* m_vec = TraceIf NeededTester<HeapVector<Member<SimpleObject> > >::create(); 5041 TraceIfNeededTester<HeapVector<Member<SimpleObject> > >* m_vec = TraceIf NeededTester<HeapVector<Member<SimpleObject> > >::create();
5045 m_vec->obj().append(SimpleObject::create()); 5042 m_vec->obj().append(SimpleObject::create());
5046 visitor.reset(); 5043 visitor.reset();
5047 m_vec->trace(&visitor); 5044 m_vec->trace(&visitor);
5048 EXPECT_EQ(2u, visitor.count()); 5045 EXPECT_EQ(2u, visitor.count());
5049 } 5046 }
5050 } 5047 }
5051 5048
5049 class PartObjectWithVirtualMethod {
5050 public:
5051 virtual void trace(Visitor*) { }
5052 };
5053
5054 class ObjectWithVirtualPartObject : public GarbageCollected<ObjectWithVirtualPar tObject> {
5055 public:
5056 ObjectWithVirtualPartObject() : m_dummy(allocateAndReturnBool()) { }
5057 void trace(Visitor* visitor) { visitor->trace(m_part); }
5058 private:
5059 bool m_dummy;
5060 PartObjectWithVirtualMethod m_part;
5061 };
5062
5063 TEST(HeapTest, PartObjectWithVirtualMethod)
5064 {
5065 ObjectWithVirtualPartObject* object = new ObjectWithVirtualPartObject();
5066 EXPECT_TRUE(object);
5067 }
5068
5052 } // namespace blink 5069 } // namespace blink
OLDNEW
« 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