OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 1299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1310 ASSERT(checkThread()); | 1310 ASSERT(checkThread()); |
1311 SafePointScope scope(BlinkGC::HeapPointersOnStack); | 1311 SafePointScope scope(BlinkGC::HeapPointersOnStack); |
1312 { | 1312 { |
1313 MutexLocker locker(threadAttachMutex()); | 1313 MutexLocker locker(threadAttachMutex()); |
1314 size_t index = m_interruptors.find(interruptor); | 1314 size_t index = m_interruptors.find(interruptor); |
1315 RELEASE_ASSERT(index != kNotFound); | 1315 RELEASE_ASSERT(index != kNotFound); |
1316 m_interruptors.remove(index); | 1316 m_interruptors.remove(index); |
1317 } | 1317 } |
1318 } | 1318 } |
1319 | 1319 |
| 1320 #if defined(LEAK_SANITIZER) |
| 1321 void ThreadState::registerStaticPersistentNode(PersistentNode* node) |
| 1322 { |
| 1323 ASSERT(!m_staticPersistents.contains(node)); |
| 1324 m_staticPersistents.add(node); |
| 1325 } |
| 1326 |
| 1327 void ThreadState::releaseStaticPersistentNodes() |
| 1328 { |
| 1329 for (PersistentNode* node : m_staticPersistents) |
| 1330 persistentRegion()->freePersistentNode(node); |
| 1331 |
| 1332 m_staticPersistents.clear(); |
| 1333 } |
| 1334 |
| 1335 #endif |
| 1336 |
1320 ThreadState::AttachedThreadStateSet& ThreadState::attachedThreads() | 1337 ThreadState::AttachedThreadStateSet& ThreadState::attachedThreads() |
1321 { | 1338 { |
1322 DEFINE_STATIC_LOCAL(AttachedThreadStateSet, threads, ()); | 1339 DEFINE_STATIC_LOCAL(AttachedThreadStateSet, threads, ()); |
1323 return threads; | 1340 return threads; |
1324 } | 1341 } |
1325 | 1342 |
1326 void ThreadState::lockThreadAttachMutex() | 1343 void ThreadState::lockThreadAttachMutex() |
1327 { | 1344 { |
1328 threadAttachMutex().lock(); | 1345 threadAttachMutex().lock(); |
1329 } | 1346 } |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1483 threadDump->addScalar("dead_count", "objects", totalDeadCount); | 1500 threadDump->addScalar("dead_count", "objects", totalDeadCount); |
1484 threadDump->addScalar("live_size", "bytes", totalLiveSize); | 1501 threadDump->addScalar("live_size", "bytes", totalLiveSize); |
1485 threadDump->addScalar("dead_size", "bytes", totalDeadSize); | 1502 threadDump->addScalar("dead_size", "bytes", totalDeadSize); |
1486 | 1503 |
1487 WebMemoryAllocatorDump* heapsDump = BlinkGCMemoryDumpProvider::instance()->c
reateMemoryAllocatorDumpForCurrentGC(heapsDumpName); | 1504 WebMemoryAllocatorDump* heapsDump = BlinkGCMemoryDumpProvider::instance()->c
reateMemoryAllocatorDumpForCurrentGC(heapsDumpName); |
1488 WebMemoryAllocatorDump* classesDump = BlinkGCMemoryDumpProvider::instance()-
>createMemoryAllocatorDumpForCurrentGC(classesDumpName); | 1505 WebMemoryAllocatorDump* classesDump = BlinkGCMemoryDumpProvider::instance()-
>createMemoryAllocatorDumpForCurrentGC(classesDumpName); |
1489 BlinkGCMemoryDumpProvider::instance()->currentProcessMemoryDump()->addOwners
hipEdge(classesDump->guid(), heapsDump->guid()); | 1506 BlinkGCMemoryDumpProvider::instance()->currentProcessMemoryDump()->addOwners
hipEdge(classesDump->guid(), heapsDump->guid()); |
1490 } | 1507 } |
1491 | 1508 |
1492 } // namespace blink | 1509 } // namespace blink |
OLD | NEW |