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

Unified Diff: Source/heap/ThreadState.cpp

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/ThreadState.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/ThreadState.cpp
diff --git a/Source/heap/ThreadState.cpp b/Source/heap/ThreadState.cpp
index 935284cec6aff4ce5b627ded3b13a9475cdd2d99..233a979afe7ea6e39a9d325529717307e42d90a9 100644
--- a/Source/heap/ThreadState.cpp
+++ b/Source/heap/ThreadState.cpp
@@ -229,6 +229,7 @@ private:
ThreadState::ThreadState()
: m_thread(currentThread())
+ , m_persistents(adoptPtr(new PersistentAnchor()))
, m_startOfStack(reinterpret_cast<intptr_t*>(getStackStart()))
, m_endOfStack(reinterpret_cast<intptr_t*>(getStackStart()))
, m_safePointScopeMarker(0)
@@ -239,13 +240,12 @@ ThreadState::ThreadState()
, m_sweepInProgress(false)
, m_noAllocationCount(0)
, m_inGC(false)
- , m_heapContainsCache(new HeapContainsCache())
+ , m_heapContainsCache(adoptPtr(new HeapContainsCache()))
, m_isCleaningUp(false)
{
ASSERT(!**s_threadSpecific);
**s_threadSpecific = this;
- m_persistents = new PersistentAnchor();
m_stats.clear();
m_statsAfterLastGC.clear();
// First allocate the general heap, second iterate through to
@@ -260,8 +260,6 @@ ThreadState::~ThreadState()
checkThread();
for (int i = GeneralHeap; i < NumberOfHeaps; i++)
delete m_heaps[i];
- delete m_persistents;
- m_persistents = 0;
deleteAllValues(m_interruptors);
**s_threadSpecific = 0;
}
« no previous file with comments | « Source/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698