Chromium Code Reviews

Unified Diff: trunk/Source/heap/ThreadState.cpp

Issue 180723022: Revert 168384 "Use OwnPtrs for heap contains cache and persisten..." (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « trunk/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: trunk/Source/heap/ThreadState.cpp
===================================================================
--- trunk/Source/heap/ThreadState.cpp (revision 168675)
+++ trunk/Source/heap/ThreadState.cpp (working copy)
@@ -229,7 +229,6 @@
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)
@@ -240,12 +239,13 @@
, m_sweepInProgress(false)
, m_noAllocationCount(0)
, m_inGC(false)
- , m_heapContainsCache(adoptPtr(new HeapContainsCache()))
+ , m_heapContainsCache(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,6 +260,8 @@
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 | « trunk/Source/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine