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

Side by Side Diff: src/heap.h

Issue 9196003: Fix responsiveness of high promotion mode heuristics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 11 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after
1374 static inline void CopyBlock(Address dst, Address src, int byte_size); 1374 static inline void CopyBlock(Address dst, Address src, int byte_size);
1375 1375
1376 // Optimized version of memmove for blocks with pointer size aligned sizes and 1376 // Optimized version of memmove for blocks with pointer size aligned sizes and
1377 // pointer size aligned addresses. 1377 // pointer size aligned addresses.
1378 static inline void MoveBlock(Address dst, Address src, int byte_size); 1378 static inline void MoveBlock(Address dst, Address src, int byte_size);
1379 1379
1380 // Check new space expansion criteria and expand semispaces if it was hit. 1380 // Check new space expansion criteria and expand semispaces if it was hit.
1381 void CheckNewSpaceExpansionCriteria(); 1381 void CheckNewSpaceExpansionCriteria();
1382 1382
1383 inline void IncrementYoungSurvivorsCounter(int survived) { 1383 inline void IncrementYoungSurvivorsCounter(int survived) {
1384 ASSERT(survived >= 0);
1384 young_survivors_after_last_gc_ = survived; 1385 young_survivors_after_last_gc_ = survived;
1385 survived_since_last_expansion_ += survived; 1386 survived_since_last_expansion_ += survived;
1386 } 1387 }
1387 1388
1388 inline bool NextGCIsLikelyToBeFull() { 1389 inline bool NextGCIsLikelyToBeFull() {
1389 if (FLAG_gc_global) return true; 1390 if (FLAG_gc_global) return true;
1390 1391
1391 intptr_t total_promoted = PromotedTotalSize(); 1392 intptr_t total_promoted = PromotedTotalSize();
1392 1393
1393 intptr_t adjusted_promotion_limit = 1394 intptr_t adjusted_promotion_limit =
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1792 1793
1793 // Initializes the number to string cache based on the max semispace size. 1794 // Initializes the number to string cache based on the max semispace size.
1794 MUST_USE_RESULT MaybeObject* InitializeNumberStringCache(); 1795 MUST_USE_RESULT MaybeObject* InitializeNumberStringCache();
1795 // Flush the number to string cache. 1796 // Flush the number to string cache.
1796 void FlushNumberStringCache(); 1797 void FlushNumberStringCache();
1797 1798
1798 void UpdateSurvivalRateTrend(int start_new_space_size); 1799 void UpdateSurvivalRateTrend(int start_new_space_size);
1799 1800
1800 enum SurvivalRateTrend { INCREASING, STABLE, DECREASING, FLUCTUATING }; 1801 enum SurvivalRateTrend { INCREASING, STABLE, DECREASING, FLUCTUATING };
1801 1802
1802 static const int kYoungSurvivalRateThreshold = 90; 1803 static const int kYoungSurvivalRateHighThreshold = 90;
1804 static const int kYoungSurvivalRateLowThreshold = 10;
1803 static const int kYoungSurvivalRateAllowedDeviation = 15; 1805 static const int kYoungSurvivalRateAllowedDeviation = 15;
1804 1806
1805 int young_survivors_after_last_gc_; 1807 int young_survivors_after_last_gc_;
1806 int high_survival_rate_period_length_; 1808 int high_survival_rate_period_length_;
1809 int low_survival_rate_period_length_;
1807 double survival_rate_; 1810 double survival_rate_;
1808 SurvivalRateTrend previous_survival_rate_trend_; 1811 SurvivalRateTrend previous_survival_rate_trend_;
1809 SurvivalRateTrend survival_rate_trend_; 1812 SurvivalRateTrend survival_rate_trend_;
1810 1813
1811 void set_survival_rate_trend(SurvivalRateTrend survival_rate_trend) { 1814 void set_survival_rate_trend(SurvivalRateTrend survival_rate_trend) {
1812 ASSERT(survival_rate_trend != FLUCTUATING); 1815 ASSERT(survival_rate_trend != FLUCTUATING);
1813 previous_survival_rate_trend_ = survival_rate_trend_; 1816 previous_survival_rate_trend_ = survival_rate_trend_;
1814 survival_rate_trend_ = survival_rate_trend; 1817 survival_rate_trend_ = survival_rate_trend;
1815 } 1818 }
1816 1819
(...skipping 12 matching lines...) Expand all
1829 bool IsStableOrIncreasingSurvivalTrend() { 1832 bool IsStableOrIncreasingSurvivalTrend() {
1830 switch (survival_rate_trend()) { 1833 switch (survival_rate_trend()) {
1831 case STABLE: 1834 case STABLE:
1832 case INCREASING: 1835 case INCREASING:
1833 return true; 1836 return true;
1834 default: 1837 default:
1835 return false; 1838 return false;
1836 } 1839 }
1837 } 1840 }
1838 1841
1842 bool IsStableOrDecreasingSurvivalTrend() {
1843 switch (survival_rate_trend()) {
1844 case STABLE:
1845 case DECREASING:
1846 return true;
1847 default:
1848 return false;
1849 }
1850 }
1851
1839 bool IsIncreasingSurvivalTrend() { 1852 bool IsIncreasingSurvivalTrend() {
1840 return survival_rate_trend() == INCREASING; 1853 return survival_rate_trend() == INCREASING;
1841 } 1854 }
1842 1855
1843 bool IsDecreasingSurvivalTrend() { 1856 bool IsHighSurvivalRate() {
1844 return survival_rate_trend() == DECREASING; 1857 return high_survival_rate_period_length_ > 0;
1845 } 1858 }
1846 1859
1847 bool IsHighSurvivalRate() { 1860 bool IsLowSurvivalRate() {
1848 return high_survival_rate_period_length_ > 0; 1861 return low_survival_rate_period_length_ > 0;
1849 } 1862 }
1850 1863
1851 void SelectScavengingVisitorsTable(); 1864 void SelectScavengingVisitorsTable();
1852 1865
1853 void StartIdleRound() { 1866 void StartIdleRound() {
1854 mark_sweeps_since_idle_round_started_ = 0; 1867 mark_sweeps_since_idle_round_started_ = 0;
1855 ms_count_at_last_idle_notification_ = ms_count_; 1868 ms_count_at_last_idle_notification_ = ms_count_;
1856 } 1869 }
1857 1870
1858 void FinishIdleRound() { 1871 void FinishIdleRound() {
(...skipping 756 matching lines...) Expand 10 before | Expand all | Expand 10 after
2615 2628
2616 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer); 2629 DISALLOW_IMPLICIT_CONSTRUCTORS(PathTracer);
2617 }; 2630 };
2618 #endif // DEBUG || LIVE_OBJECT_LIST 2631 #endif // DEBUG || LIVE_OBJECT_LIST
2619 2632
2620 } } // namespace v8::internal 2633 } } // namespace v8::internal
2621 2634
2622 #undef HEAP 2635 #undef HEAP
2623 2636
2624 #endif // V8_HEAP_H_ 2637 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « no previous file | src/heap.cc » ('j') | src/heap.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698