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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1256 } | 1256 } |
1257 #endif | 1257 #endif |
1258 | 1258 |
1259 void ThreadState::invokePreFinalizers() { | 1259 void ThreadState::invokePreFinalizers() { |
1260 ASSERT(checkThread()); | 1260 ASSERT(checkThread()); |
1261 ASSERT(!sweepForbidden()); | 1261 ASSERT(!sweepForbidden()); |
1262 TRACE_EVENT0("blink_gc", "ThreadState::invokePreFinalizers"); | 1262 TRACE_EVENT0("blink_gc", "ThreadState::invokePreFinalizers"); |
1263 | 1263 |
1264 SweepForbiddenScope sweepForbidden(this); | 1264 SweepForbiddenScope sweepForbidden(this); |
1265 ScriptForbiddenIfMainThreadScope scriptForbidden; | 1265 ScriptForbiddenIfMainThreadScope scriptForbidden; |
| 1266 NoAllocationScope noAllocationScope(this); |
1266 | 1267 |
1267 double startTime = WTF::currentTimeMS(); | 1268 double startTime = WTF::currentTimeMS(); |
1268 if (!m_orderedPreFinalizers.isEmpty()) { | 1269 if (!m_orderedPreFinalizers.isEmpty()) { |
1269 // Call the prefinalizers in the opposite order to their registration. | 1270 // Call the prefinalizers in the opposite order to their registration. |
1270 // | 1271 // |
1271 // The prefinalizer callback wrapper returns |true| when its associated | 1272 // The prefinalizer callback wrapper returns |true| when its associated |
1272 // object is unreachable garbage and the prefinalizer callback has run. | 1273 // object is unreachable garbage and the prefinalizer callback has run. |
1273 // The registered prefinalizer entry must then be removed and deleted. | 1274 // The registered prefinalizer entry must then be removed and deleted. |
1274 // | 1275 // |
1275 auto it = --m_orderedPreFinalizers.end(); | 1276 auto it = --m_orderedPreFinalizers.end(); |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1548 collectGarbage(BlinkGC::NoHeapPointersOnStack, BlinkGC::GCWithSweep, | 1549 collectGarbage(BlinkGC::NoHeapPointersOnStack, BlinkGC::GCWithSweep, |
1549 BlinkGC::ForcedGC); | 1550 BlinkGC::ForcedGC); |
1550 size_t liveObjects = heap().heapStats().markedObjectSize(); | 1551 size_t liveObjects = heap().heapStats().markedObjectSize(); |
1551 if (liveObjects == previousLiveObjects) | 1552 if (liveObjects == previousLiveObjects) |
1552 break; | 1553 break; |
1553 previousLiveObjects = liveObjects; | 1554 previousLiveObjects = liveObjects; |
1554 } | 1555 } |
1555 } | 1556 } |
1556 | 1557 |
1557 } // namespace blink | 1558 } // namespace blink |
OLD | NEW |