| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 5312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5323 } | 5323 } |
| 5324 int mark_sweep_time = Min(TimeMarkSweepWouldTakeInMs(), 1000); | 5324 int mark_sweep_time = Min(TimeMarkSweepWouldTakeInMs(), 1000); |
| 5325 if (hint >= mark_sweep_time && incremental_marking()->IsStopped()) { | 5325 if (hint >= mark_sweep_time && incremental_marking()->IsStopped()) { |
| 5326 HistogramTimerScope scope(isolate_->counters()->gc_context()); | 5326 HistogramTimerScope scope(isolate_->counters()->gc_context()); |
| 5327 CollectAllGarbage(kReduceMemoryFootprintMask, | 5327 CollectAllGarbage(kReduceMemoryFootprintMask, |
| 5328 "idle notification: contexts disposed"); | 5328 "idle notification: contexts disposed"); |
| 5329 } else { | 5329 } else { |
| 5330 AdvanceIdleIncrementalMarking(step_size); | 5330 AdvanceIdleIncrementalMarking(step_size); |
| 5331 contexts_disposed_ = 0; | 5331 contexts_disposed_ = 0; |
| 5332 } | 5332 } |
| 5333 // Make sure that we have no pending context disposals. | |
| 5334 // Take into account that we might have decided to delay full collection | |
| 5335 // because incremental marking is in progress. | |
| 5336 ASSERT((contexts_disposed_ == 0) || !incremental_marking()->IsStopped()); | |
| 5337 // After context disposal there is likely a lot of garbage remaining, reset | 5333 // After context disposal there is likely a lot of garbage remaining, reset |
| 5338 // the idle notification counters in order to trigger more incremental GCs | 5334 // the idle notification counters in order to trigger more incremental GCs |
| 5339 // on subsequent idle notifications. | 5335 // on subsequent idle notifications. |
| 5340 StartIdleRound(); | 5336 StartIdleRound(); |
| 5341 return false; | 5337 return false; |
| 5342 } | 5338 } |
| 5343 | 5339 |
| 5344 if (!FLAG_incremental_marking || Serializer::enabled()) { | 5340 if (!FLAG_incremental_marking || Serializer::enabled()) { |
| 5345 return IdleGlobalGC(); | 5341 return IdleGlobalGC(); |
| 5346 } | 5342 } |
| (...skipping 1985 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 7332 static_cast<int>(object_sizes_last_time_[index])); | 7328 static_cast<int>(object_sizes_last_time_[index])); |
| 7333 FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADJUST_LAST_TIME_OBJECT_COUNT) | 7329 FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADJUST_LAST_TIME_OBJECT_COUNT) |
| 7334 #undef ADJUST_LAST_TIME_OBJECT_COUNT | 7330 #undef ADJUST_LAST_TIME_OBJECT_COUNT |
| 7335 | 7331 |
| 7336 memcpy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); | 7332 memcpy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); |
| 7337 memcpy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); | 7333 memcpy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); |
| 7338 ClearObjectStats(); | 7334 ClearObjectStats(); |
| 7339 } | 7335 } |
| 7340 | 7336 |
| 7341 } } // namespace v8::internal | 7337 } } // namespace v8::internal |
| OLD | NEW |