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

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

Issue 1280543004: Revert of Oilpan: catch some self-referential leaks (main thread.) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/platform/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/platform/heap/ThreadState.cpp
diff --git a/Source/platform/heap/ThreadState.cpp b/Source/platform/heap/ThreadState.cpp
index 78bb414ad1345c5730bf4c97b0b79f7e319d1fa1..b7756d3418cab62cb43047a1743b329f49086dc6 100644
--- a/Source/platform/heap/ThreadState.cpp
+++ b/Source/platform/heap/ThreadState.cpp
@@ -76,9 +76,6 @@
uintptr_t ThreadState::s_mainThreadUnderestimatedStackSize = 0;
uint8_t ThreadState::s_mainThreadStateStorage[sizeof(ThreadState)];
SafePointBarrier* ThreadState::s_safePointBarrier = nullptr;
-#if ENABLE(ASSERT)
-int ThreadState::s_selfKeepAliveAllocationsOnMainThread = 0;
-#endif
RecursiveMutex& ThreadState::threadAttachMutex()
{
@@ -169,9 +166,6 @@
MutexLocker locker(threadAttachMutex());
ThreadState* state = new(s_mainThreadStateStorage) ThreadState();
attachedThreads().add(state);
-#if ENABLE(ASSERT)
- s_selfKeepAliveAllocationsOnMainThread = 0;
-#endif
}
void ThreadState::detachMainThread()
@@ -195,8 +189,6 @@
attachedThreads().remove(state);
state->~ThreadState();
}
- // Catch out any self-referential leaks created by the main thread.
- ASSERT(s_selfKeepAliveAllocationsOnMainThread == 0);
shutdownHeapIfNecessary();
}
@@ -265,10 +257,7 @@
}
// We should not have any persistents left when getting to this point,
// if we have it is probably a bug so adding a debug ASSERT to catch this.
- // (debug tip: use persistentRegion()->dumpLivePersistents() to get a list of
- // the remaining live Persistent<>s. In gdb, performing "info symbol" on the
- // trace callback addresses printed should tell you what Persistent<T>s are leaking.)
- ASSERT(!currentCount && "Persistent<>s leak on thread heap shutdown");
+ ASSERT(!currentCount);
// All of pre-finalizers should be consumed.
ASSERT(m_orderedPreFinalizers.isEmpty());
RELEASE_ASSERT(gcState() == NoGCScheduled);
@@ -1553,23 +1542,4 @@
}
#endif
-#if ENABLE(ASSERT)
-void ThreadState::incrementSelfKeepAliveAllocations()
-{
- if (!ThreadState::current()->isMainThread())
- return;
-
- s_selfKeepAliveAllocationsOnMainThread++;
-}
-
-void ThreadState::decrementSelfKeepAliveAllocations()
-{
- if (!ThreadState::current()->isMainThread())
- return;
-
- ASSERT(s_selfKeepAliveAllocationsOnMainThread > 0);
- s_selfKeepAliveAllocationsOnMainThread--;
-}
-#endif
-
} // namespace blink
« no previous file with comments | « Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698