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

Unified Diff: Source/heap/ThreadState.h

Issue 183683017: Use OwnPtrs for heap contains cache and persistent anchor. We were leaking the HeapContainsCache. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/heap/Handle.h ('k') | Source/heap/ThreadState.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/ThreadState.h
diff --git a/Source/heap/ThreadState.h b/Source/heap/ThreadState.h
index 4760129d0a927f51816d4971a1aa8c085eb1a372..81cec848ae92d8be1fbd0ae8c64ac2d60c5f5f64 100644
--- a/Source/heap/ThreadState.h
+++ b/Source/heap/ThreadState.h
@@ -455,7 +455,7 @@ public:
// Infrastructure to determine if an address is within one of the
// address ranges for the Blink heap.
- HeapContainsCache* heapContainsCache() { return m_heapContainsCache; }
+ HeapContainsCache* heapContainsCache() { return m_heapContainsCache.get(); }
bool contains(Address);
bool contains(void* pointer) { return contains(reinterpret_cast<Address>(pointer)); }
bool contains(const void* pointer) { return contains(const_cast<void*>(pointer)); }
@@ -466,7 +466,7 @@ public:
BaseHeapPage* heapPageFromAddress(Address);
// List of persistent roots allocated on the given thread.
- PersistentNode* roots() const { return m_persistents; }
+ PersistentNode* roots() const { return m_persistents.get(); }
// List of global persistent roots not owned by any particular thread.
// globalRootsMutex must be acquired before any modifications.
@@ -520,7 +520,7 @@ private:
void trace(Visitor*);
ThreadIdentifier m_thread;
- PersistentNode* m_persistents;
+ OwnPtr<PersistentNode> m_persistents;
StackState m_stackState;
intptr_t* m_startOfStack;
intptr_t* m_endOfStack;
@@ -534,7 +534,7 @@ private:
size_t m_noAllocationCount;
bool m_inGC;
BaseHeap* m_heaps[NumberOfHeaps];
- HeapContainsCache* m_heapContainsCache;
+ OwnPtr<HeapContainsCache> m_heapContainsCache;
HeapStats m_stats;
HeapStats m_statsAfterLastGC;
« no previous file with comments | « Source/heap/Handle.h ('k') | Source/heap/ThreadState.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698