OLD | NEW |
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 // The below assignment will destroy the context, which will in turn notify
messaging proxy. | 138 // The below assignment will destroy the context, which will in turn notify
messaging proxy. |
139 // We cannot let any objects survive past thread exit, because no other thre
ad will run GC or otherwise destroy them. | 139 // 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. | 140 // 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) | 141 #if ENABLE(OILPAN) |
142 m_workerGlobalScope->dispose(); | 142 m_workerGlobalScope->dispose(); |
143 #else | 143 #else |
144 ASSERT(m_workerGlobalScope->hasOneRef()); | 144 ASSERT(m_workerGlobalScope->hasOneRef()); |
145 #endif | 145 #endif |
146 m_workerGlobalScope = nullptr; | 146 m_workerGlobalScope = nullptr; |
147 | 147 |
| 148 // Detach the ThreadState, cleaning out the thread's heap by |
| 149 // performing a final GC. The cleanup operation will at the end |
| 150 // assert that the heap is empty. If the heap does not become |
| 151 // empty, there are still pointers into the heap and those |
| 152 // pointers will be dangling after thread termination because we |
| 153 // are destroying the heap. It is important to detach while the |
| 154 // thread is still valid. In particular, finalizers for objects in |
| 155 // the heap for this thread will need to access thread local data. |
148 ThreadState::detach(); | 156 ThreadState::detach(); |
149 | 157 |
| 158 // Notify the proxy that the WorkerGlobalScope has been disposed of. |
| 159 // This can free this thread object, hence it must not be touched afterwards
. |
| 160 workerReportingProxy().workerGlobalScopeDestroyed(); |
| 161 |
150 // Clean up PlatformThreadData before WTF::WTFThreadData goes away! | 162 // Clean up PlatformThreadData before WTF::WTFThreadData goes away! |
151 PlatformThreadData::current().destroy(); | 163 PlatformThreadData::current().destroy(); |
152 | 164 |
153 // The thread object may be already destroyed from notification now, don't t
ry to access "this". | 165 // The thread object may be already destroyed from notification now, don't t
ry to access "this". |
154 detachThread(threadID); | 166 detachThread(threadID); |
155 } | 167 } |
156 | 168 |
157 void WorkerThread::runEventLoop() | 169 void WorkerThread::runEventLoop() |
158 { | 170 { |
159 // Does not return until terminated. | 171 // Does not return until terminated. |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 void WorkerThread::releaseFastMallocFreeMemoryInAllThreads() | 249 void WorkerThread::releaseFastMallocFreeMemoryInAllThreads() |
238 { | 250 { |
239 MutexLocker lock(threadSetMutex()); | 251 MutexLocker lock(threadSetMutex()); |
240 HashSet<WorkerThread*>& threads = workerThreads(); | 252 HashSet<WorkerThread*>& threads = workerThreads(); |
241 HashSet<WorkerThread*>::iterator end = threads.end(); | 253 HashSet<WorkerThread*>::iterator end = threads.end(); |
242 for (HashSet<WorkerThread*>::iterator it = threads.begin(); it != end; ++it) | 254 for (HashSet<WorkerThread*>::iterator it = threads.begin(); it != end; ++it) |
243 (*it)->runLoop().postTask(adoptPtr(new ReleaseFastMallocFreeMemoryTask))
; | 255 (*it)->runLoop().postTask(adoptPtr(new ReleaseFastMallocFreeMemoryTask))
; |
244 } | 256 } |
245 | 257 |
246 } // namespace WebCore | 258 } // namespace WebCore |
OLD | NEW |