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

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

Issue 1411013005: Revert of Precisely determine Windows thread stack size. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « third_party/WebKit/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: third_party/WebKit/Source/platform/heap/ThreadState.cpp
diff --git a/third_party/WebKit/Source/platform/heap/ThreadState.cpp b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
index 467c382937a193bd8c6e173ece160d350763ef38..63c9ecf4f41f0417509cc21b420b0e225ecd5113 100644
--- a/third_party/WebKit/Source/platform/heap/ThreadState.cpp
+++ b/third_party/WebKit/Source/platform/heap/ThreadState.cpp
@@ -90,9 +90,6 @@
ThreadState::ThreadState()
: m_thread(currentThread())
, m_persistentRegion(adoptPtr(new PersistentRegion()))
-#if OS(WIN) && COMPILER(MSVC)
- , m_threadStackSize(0)
-#endif
, m_startOfStack(reinterpret_cast<intptr_t*>(StackFrameDepth::getStackStart()))
, m_endOfStack(reinterpret_cast<intptr_t*>(StackFrameDepth::getStackStart()))
, m_safePointScopeMarker(nullptr)
@@ -164,28 +161,6 @@
// Thread-local storage shouldn't be disposed, so we don't call ~ThreadSpecific().
}
-
-#if OS(WIN) && COMPILER(MSVC)
-size_t ThreadState::threadStackSize()
-{
- if (m_threadStackSize)
- return m_threadStackSize;
-
- // Notice that we cannot use the TIB's StackLimit for the stack end, as it
- // tracks the end of the committed range. We're after the end of the reserved
- // stack area (most of which will be uncommitted, most times.)
- MEMORY_BASIC_INFORMATION stackInfo;
- memset(&stackInfo, 0, sizeof(MEMORY_BASIC_INFORMATION));
- size_t resultSize = VirtualQuery(&stackInfo, &stackInfo, sizeof(MEMORY_BASIC_INFORMATION));
- ASSERT(resultSize >= sizeof(MEMORY_BASIC_INFORMATION));
- Address stackEnd = reinterpret_cast<Address>(stackInfo.AllocationBase);
-
- Address stackStart = reinterpret_cast<Address>(StackFrameDepth::getStackStart());
- RELEASE_ASSERT(stackStart && stackStart > stackEnd);
- m_threadStackSize = static_cast<size_t>(stackStart - stackEnd);
- return m_threadStackSize;
-}
-#endif
void ThreadState::attachMainThread()
{
« no previous file with comments | « third_party/WebKit/Source/platform/heap/ThreadState.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698