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

Side by Side Diff: Source/heap/HeapTest.cpp

Issue 197343003: Fix PersistentHeapHashMap to work with stack allocated, heap backed weak collections (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update comments. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/heap/Heap.cpp ('k') | Source/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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 ASSERT(header->payload()); 149 ASSERT(header->payload());
150 m_count++; 150 m_count++;
151 } 151 }
152 152
153 virtual void mark(FinalizedHeapObjectHeader* header, TraceCallback callback) OVERRIDE 153 virtual void mark(FinalizedHeapObjectHeader* header, TraceCallback callback) OVERRIDE
154 { 154 {
155 ASSERT(header->payload()); 155 ASSERT(header->payload());
156 m_count++; 156 m_count++;
157 } 157 }
158 158
159 virtual void registerWeakMembers(const void*, WeakPointerCallback) OVERRIDE { } 159 virtual void registerWeakMembers(const void*, const void*, WeakPointerCallba ck) OVERRIDE { }
160 virtual void registerWeakCell(void**, WeakPointerCallback) OVERRIDE { } 160 virtual void registerWeakCell(void**, WeakPointerCallback) OVERRIDE { }
161 virtual bool isMarked(const void*) OVERRIDE { return false; } 161 virtual bool isMarked(const void*) OVERRIDE { return false; }
162 162
163 FOR_EACH_TYPED_HEAP(DEFINE_VISITOR_METHODS) 163 FOR_EACH_TYPED_HEAP(DEFINE_VISITOR_METHODS)
164 164
165 size_t count() { return m_count; } 165 size_t count() { return m_count; }
166 void reset() { m_count = 0; } 166 void reset() { m_count = 0; }
167 167
168 private: 168 private:
169 size_t m_count; 169 size_t m_count;
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 private: 393 private:
394 virtual void runThread() OVERRIDE 394 virtual void runThread() OVERRIDE
395 { 395 {
396 ThreadState::attach(); 396 ThreadState::attach();
397 397
398 int gcCount = 0; 398 int gcCount = 0;
399 while (!done()) { 399 while (!done()) {
400 ThreadState::current()->safePoint(ThreadState::NoHeapPointersOnStack ); 400 ThreadState::current()->safePoint(ThreadState::NoHeapPointersOnStack );
401 { 401 {
402 Persistent<HeapHashMap<ThreadMarker, WeakMember<IntWrapper> > > weakMap = new HeapHashMap<ThreadMarker, WeakMember<IntWrapper> >; 402 Persistent<HeapHashMap<ThreadMarker, WeakMember<IntWrapper> > > weakMap = new HeapHashMap<ThreadMarker, WeakMember<IntWrapper> >;
403 PersistentHeapHashMap<ThreadMarker, WeakMember<IntWrapper> > wea kMap2;
403 404
404 for (int i = 0; i < numberOfAllocations; i++) { 405 for (int i = 0; i < numberOfAllocations; i++) {
405 weakMap->add(static_cast<unsigned>(i), IntWrapper::create(0) ); 406 weakMap->add(static_cast<unsigned>(i), IntWrapper::create(0) );
407 weakMap2.add(static_cast<unsigned>(i), IntWrapper::create(0) );
406 if (!(i % 10)) { 408 if (!(i % 10)) {
407 ThreadState::current()->safePoint(ThreadState::NoHeapPoi ntersOnStack); 409 ThreadState::current()->safePoint(ThreadState::NoHeapPoi ntersOnStack);
408 } 410 }
409 yield(); 411 yield();
410 } 412 }
411 413
412 if (gcCount < gcPerThread) { 414 if (gcCount < gcPerThread) {
413 Heap::collectGarbage(ThreadState::NoHeapPointersOnStack); 415 Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
414 gcCount++; 416 gcCount++;
415 atomicIncrement(&m_gcCount); 417 atomicIncrement(&m_gcCount);
416 } 418 }
417 419
418 Heap::collectGarbage(ThreadState::NoHeapPointersOnStack); 420 Heap::collectGarbage(ThreadState::NoHeapPointersOnStack);
419 EXPECT_TRUE(weakMap->isEmpty()); 421 EXPECT_TRUE(weakMap->isEmpty());
422 EXPECT_TRUE(weakMap2.isEmpty());
420 } 423 }
421 yield(); 424 yield();
422 } 425 }
423 ThreadState::detach(); 426 ThreadState::detach();
424 atomicDecrement(&m_threadsToFinish); 427 atomicDecrement(&m_threadsToFinish);
425 } 428 }
426 }; 429 };
427 430
428 // The accounting for memory includes the memory used by rounding up object 431 // The accounting for memory includes the memory used by rounding up object
429 // sizes. This is done in a different way on 32 bit and 64 bit, so we have to 432 // sizes. This is done in a different way on 32 bit and 64 bit, so we have to
(...skipping 2384 matching lines...) Expand 10 before | Expand all | Expand 10 after
2814 2817
2815 namespace WTF { 2818 namespace WTF {
2816 2819
2817 // We need the below vector trait specialization for the above HeapVectors to be have correctly wrt. memset, memcmp etc. 2820 // We need the below vector trait specialization for the above HeapVectors to be have correctly wrt. memset, memcmp etc.
2818 template<> struct VectorTraits<WebCore::VectorObject> : public SimpleClassVector Traits<WebCore::VectorObject> { }; 2821 template<> struct VectorTraits<WebCore::VectorObject> : public SimpleClassVector Traits<WebCore::VectorObject> { };
2819 template<> struct VectorTraits<WebCore::VectorObjectInheritedTrace> : public Sim pleClassVectorTraits<WebCore::VectorObjectInheritedTrace> { }; 2822 template<> struct VectorTraits<WebCore::VectorObjectInheritedTrace> : public Sim pleClassVectorTraits<WebCore::VectorObjectInheritedTrace> { };
2820 template<> struct VectorTraits<WebCore::VectorObjectNoTrace> : public SimpleClas sVectorTraits<WebCore::VectorObjectNoTrace> { }; 2823 template<> struct VectorTraits<WebCore::VectorObjectNoTrace> : public SimpleClas sVectorTraits<WebCore::VectorObjectNoTrace> { };
2821 2824
2822 } // WTF namespace 2825 } // WTF namespace
2823 2826
OLDNEW
« no previous file with comments | « Source/heap/Heap.cpp ('k') | Source/heap/Visitor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698