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

Side by Side Diff: Source/core/workers/WorkerThread.cpp

Issue 194923007: Explicit notification and removal of lifecycle observers. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Try to clarify shutdown step sequencing a bit. Created 6 years, 9 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 unified diff | Download patch
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.cpp ('k') | Source/platform/LifecycleNotifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 m_workerReportingProxy.workerGlobalScopeStarted(m_workerGlobalScope.get()); 128 m_workerReportingProxy.workerGlobalScopeStarted(m_workerGlobalScope.get());
129 129
130 WorkerScriptController* script = m_workerGlobalScope->script(); 130 WorkerScriptController* script = m_workerGlobalScope->script();
131 InspectorInstrumentation::willEvaluateWorkerScript(workerGlobalScope(), star tMode); 131 InspectorInstrumentation::willEvaluateWorkerScript(workerGlobalScope(), star tMode);
132 script->evaluate(ScriptSourceCode(sourceCode, scriptURL)); 132 script->evaluate(ScriptSourceCode(sourceCode, scriptURL));
133 133
134 runEventLoop(); 134 runEventLoop();
135 135
136 ThreadIdentifier threadID = m_threadID; 136 ThreadIdentifier threadID = m_threadID;
137 137
138 #if !ENABLE(OILPAN)
139 ASSERT(m_workerGlobalScope->hasOneRef());
140 #endif
138 // The below assignment will destroy the context, which will in turn notify messaging proxy. 141 // The below assignment will destroy the context, which will in turn notify messaging proxy.
Mads Ager (chromium) 2014/03/17 08:20:52 This comment should be updated now that the notifi
139 // We cannot let any objects survive past thread exit, because no other thre ad will run GC or otherwise destroy them. 142 // We cannot let any objects survive past thread exit, because no other thre ad will run GC or otherwise destroy them.
140 // If Oilpan is enabled, we detach of the context/global scope, with the fin al heap cleanup below sweeping it out. 143 // If Oilpan is enabled, we detach of the context/global scope, with the fin al heap cleanup below sweeping it out.
141 #if ENABLE(OILPAN)
142 m_workerGlobalScope->dispose(); 144 m_workerGlobalScope->dispose();
143 #else
144 ASSERT(m_workerGlobalScope->hasOneRef());
145 #endif
146 m_workerGlobalScope = nullptr; 145 m_workerGlobalScope = nullptr;
147 146
148 ThreadState::detach(); 147 ThreadState::detach();
149 148
149 // Notify the proxy that WorkerGlobalScope has now been garbage collected an d destructed.
150 // This can free this thread object, hence it must not be touched afterwards .
151 workerReportingProxy().workerGlobalScopeDestroyed();
152
150 // Clean up PlatformThreadData before WTF::WTFThreadData goes away! 153 // Clean up PlatformThreadData before WTF::WTFThreadData goes away!
151 PlatformThreadData::current().destroy(); 154 PlatformThreadData::current().destroy();
152 155
153 // The thread object may be already destroyed from notification now, don't t ry to access "this". 156 // The thread object may be already destroyed from notification now, don't t ry to access "this".
154 detachThread(threadID); 157 detachThread(threadID);
155 } 158 }
156 159
157 void WorkerThread::runEventLoop() 160 void WorkerThread::runEventLoop()
158 { 161 {
159 // Does not return until terminated. 162 // Does not return until terminated.
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 void WorkerThread::releaseFastMallocFreeMemoryInAllThreads() 240 void WorkerThread::releaseFastMallocFreeMemoryInAllThreads()
238 { 241 {
239 MutexLocker lock(threadSetMutex()); 242 MutexLocker lock(threadSetMutex());
240 HashSet<WorkerThread*>& threads = workerThreads(); 243 HashSet<WorkerThread*>& threads = workerThreads();
241 HashSet<WorkerThread*>::iterator end = threads.end(); 244 HashSet<WorkerThread*>::iterator end = threads.end();
242 for (HashSet<WorkerThread*>::iterator it = threads.begin(); it != end; ++it) 245 for (HashSet<WorkerThread*>::iterator it = threads.begin(); it != end; ++it)
243 (*it)->runLoop().postTask(adoptPtr(new ReleaseFastMallocFreeMemoryTask)) ; 246 (*it)->runLoop().postTask(adoptPtr(new ReleaseFastMallocFreeMemoryTask)) ;
244 } 247 }
245 248
246 } // namespace WebCore 249 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/workers/WorkerGlobalScope.cpp ('k') | Source/platform/LifecycleNotifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698