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

Side by Side Diff: src/heap.cc

Issue 5862002: Version 3.0.2. (Closed)
Patch Set: Created 10 years 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
« ChangeLog ('K') | « src/heap.h ('k') | src/heap-profiler.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 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 3739 matching lines...) Expand 10 before | Expand all | Expand 10 after
3750 } 3750 }
3751 Struct::cast(result)->InitializeBody(size); 3751 Struct::cast(result)->InitializeBody(size);
3752 return result; 3752 return result;
3753 } 3753 }
3754 3754
3755 3755
3756 bool Heap::IdleNotification() { 3756 bool Heap::IdleNotification() {
3757 static const int kIdlesBeforeScavenge = 4; 3757 static const int kIdlesBeforeScavenge = 4;
3758 static const int kIdlesBeforeMarkSweep = 7; 3758 static const int kIdlesBeforeMarkSweep = 7;
3759 static const int kIdlesBeforeMarkCompact = 8; 3759 static const int kIdlesBeforeMarkCompact = 8;
3760 static const int kMaxIdleCount = kIdlesBeforeMarkCompact + 1;
3761 static const int kGCsBetweenCleanup = 4;
3762 static int number_idle_notifications = 0; 3760 static int number_idle_notifications = 0;
3763 static int last_gc_count = gc_count_; 3761 static int last_gc_count = gc_count_;
3764 3762
3765 bool uncommit = true; 3763 bool uncommit = true;
3766 bool finished = false; 3764 bool finished = false;
3767 3765
3768 // Reset the number of idle notifications received when a number of 3766 if (last_gc_count == gc_count_) {
3769 // GCs have taken place. This allows another round of cleanup based 3767 number_idle_notifications++;
3770 // on idle notifications if enough work has been carried out to
3771 // provoke a number of garbage collections.
3772 if (gc_count_ < last_gc_count + kGCsBetweenCleanup) {
3773 number_idle_notifications =
3774 Min(number_idle_notifications + 1, kMaxIdleCount);
3775 } else { 3768 } else {
3776 number_idle_notifications = 0; 3769 number_idle_notifications = 0;
3777 last_gc_count = gc_count_; 3770 last_gc_count = gc_count_;
3778 } 3771 }
3779 3772
3780 if (number_idle_notifications == kIdlesBeforeScavenge) { 3773 if (number_idle_notifications == kIdlesBeforeScavenge) {
3781 if (contexts_disposed_ > 0) { 3774 if (contexts_disposed_ > 0) {
3782 HistogramTimerScope scope(&Counters::gc_context); 3775 HistogramTimerScope scope(&Counters::gc_context);
3783 CollectAllGarbage(false); 3776 CollectAllGarbage(false);
3784 } else { 3777 } else {
3785 CollectGarbage(NEW_SPACE); 3778 CollectGarbage(NEW_SPACE);
3786 } 3779 }
3787 new_space_.Shrink(); 3780 new_space_.Shrink();
3788 last_gc_count = gc_count_; 3781 last_gc_count = gc_count_;
3782
3789 } else if (number_idle_notifications == kIdlesBeforeMarkSweep) { 3783 } else if (number_idle_notifications == kIdlesBeforeMarkSweep) {
3790 // Before doing the mark-sweep collections we clear the 3784 // Before doing the mark-sweep collections we clear the
3791 // compilation cache to avoid hanging on to source code and 3785 // compilation cache to avoid hanging on to source code and
3792 // generated code for cached functions. 3786 // generated code for cached functions.
3793 CompilationCache::Clear(); 3787 CompilationCache::Clear();
3794 3788
3795 CollectAllGarbage(false); 3789 CollectAllGarbage(false);
3796 new_space_.Shrink(); 3790 new_space_.Shrink();
3797 last_gc_count = gc_count_; 3791 last_gc_count = gc_count_;
3798 3792
3799 } else if (number_idle_notifications == kIdlesBeforeMarkCompact) { 3793 } else if (number_idle_notifications == kIdlesBeforeMarkCompact) {
3800 CollectAllGarbage(true); 3794 CollectAllGarbage(true);
3801 new_space_.Shrink(); 3795 new_space_.Shrink();
3802 last_gc_count = gc_count_; 3796 last_gc_count = gc_count_;
3797 number_idle_notifications = 0;
3803 finished = true; 3798 finished = true;
3804 3799
3805 } else if (contexts_disposed_ > 0) { 3800 } else if (contexts_disposed_ > 0) {
3806 if (FLAG_expose_gc) { 3801 if (FLAG_expose_gc) {
3807 contexts_disposed_ = 0; 3802 contexts_disposed_ = 0;
3808 } else { 3803 } else {
3809 HistogramTimerScope scope(&Counters::gc_context); 3804 HistogramTimerScope scope(&Counters::gc_context);
3810 CollectAllGarbage(false); 3805 CollectAllGarbage(false);
3811 last_gc_count = gc_count_; 3806 last_gc_count = gc_count_;
3812 } 3807 }
3813 // If this is the first idle notification, we reset the 3808 // If this is the first idle notification, we reset the
3814 // notification count to avoid letting idle notifications for 3809 // notification count to avoid letting idle notifications for
3815 // context disposal garbage collections start a potentially too 3810 // context disposal garbage collections start a potentially too
3816 // aggressive idle GC cycle. 3811 // aggressive idle GC cycle.
3817 if (number_idle_notifications <= 1) { 3812 if (number_idle_notifications <= 1) {
3818 number_idle_notifications = 0; 3813 number_idle_notifications = 0;
3819 uncommit = false; 3814 uncommit = false;
3820 } 3815 }
3821 } else if (number_idle_notifications > kIdlesBeforeMarkCompact) {
3822 // If we have received more than kIdlesBeforeMarkCompact idle
3823 // notifications we do not perform any cleanup because we don't
3824 // expect to gain much by doing so.
3825 finished = true;
3826 } 3816 }
3827 3817
3828 // Make sure that we have no pending context disposals and 3818 // Make sure that we have no pending context disposals and
3829 // conditionally uncommit from space. 3819 // conditionally uncommit from space.
3830 ASSERT(contexts_disposed_ == 0); 3820 ASSERT(contexts_disposed_ == 0);
3831 if (uncommit) Heap::UncommitFromSpace(); 3821 if (uncommit) Heap::UncommitFromSpace();
3832 return finished; 3822 return finished;
3833 } 3823 }
3834 3824
3835 3825
(...skipping 1612 matching lines...) Expand 10 before | Expand all | Expand 10 after
5448 void ExternalStringTable::TearDown() { 5438 void ExternalStringTable::TearDown() {
5449 new_space_strings_.Free(); 5439 new_space_strings_.Free();
5450 old_space_strings_.Free(); 5440 old_space_strings_.Free();
5451 } 5441 }
5452 5442
5453 5443
5454 List<Object*> ExternalStringTable::new_space_strings_; 5444 List<Object*> ExternalStringTable::new_space_strings_;
5455 List<Object*> ExternalStringTable::old_space_strings_; 5445 List<Object*> ExternalStringTable::old_space_strings_;
5456 5446
5457 } } // namespace v8::internal 5447 } } // namespace v8::internal
OLDNEW
« ChangeLog ('K') | « src/heap.h ('k') | src/heap-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698