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

Side by Side Diff: runtime/vm/pages.cc

Issue 617413003: - Reenable concurrent sweep on ia32. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 2 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 | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/pages.h" 5 #include "vm/pages.h"
6 6
7 #include "platform/assert.h" 7 #include "platform/assert.h"
8 #include "vm/compiler_stats.h" 8 #include "vm/compiler_stats.h"
9 #include "vm/gc_marker.h" 9 #include "vm/gc_marker.h"
10 #include "vm/gc_sweeper.h" 10 #include "vm/gc_sweeper.h"
(...skipping 15 matching lines...) Expand all
26 DEFINE_FLAG(bool, print_free_list_after_gc, false, 26 DEFINE_FLAG(bool, print_free_list_after_gc, false,
27 "Print free list statistics after a GC"); 27 "Print free list statistics after a GC");
28 DEFINE_FLAG(bool, collect_code, true, 28 DEFINE_FLAG(bool, collect_code, true,
29 "Attempt to GC infrequently used code."); 29 "Attempt to GC infrequently used code.");
30 DEFINE_FLAG(int, code_collection_interval_in_us, 30000000, 30 DEFINE_FLAG(int, code_collection_interval_in_us, 30000000,
31 "Time between attempts to collect unused code."); 31 "Time between attempts to collect unused code.");
32 DEFINE_FLAG(bool, log_code_drop, false, 32 DEFINE_FLAG(bool, log_code_drop, false,
33 "Emit a log message when pointers to unused code are dropped."); 33 "Emit a log message when pointers to unused code are dropped.");
34 DEFINE_FLAG(bool, always_drop_code, false, 34 DEFINE_FLAG(bool, always_drop_code, false,
35 "Always try to drop code if the function's usage counter is >= 0"); 35 "Always try to drop code if the function's usage counter is >= 0");
36 #if defined(TARGET_ARCH_IA32)
37 DEFINE_FLAG(bool, concurrent_sweep, true,
38 "Concurrent sweep for old generation.");
39 #else // TARGET_ARCH_IA32
36 DEFINE_FLAG(bool, concurrent_sweep, false, 40 DEFINE_FLAG(bool, concurrent_sweep, false,
37 "Concurrent sweep for old generation."); 41 "Concurrent sweep for old generation.");
42 #endif // TARGET_ARCH_IA32
38 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions."); 43 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions.");
39 44
40 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) { 45 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) {
41 ASSERT(memory->size() > VirtualMemory::PageSize()); 46 ASSERT(memory->size() > VirtualMemory::PageSize());
42 bool is_executable = (type == kExecutable); 47 bool is_executable = (type == kExecutable);
43 memory->Commit(is_executable); 48 memory->Commit(is_executable);
44 49
45 HeapPage* result = reinterpret_cast<HeapPage*>(memory->address()); 50 HeapPage* result = reinterpret_cast<HeapPage*>(memory->address());
46 result->memory_ = memory; 51 result->memory_ = memory;
47 result->next_ = NULL; 52 result->next_ = NULL;
(...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 return 0; 992 return 0;
988 } else { 993 } else {
989 ASSERT(total_time >= gc_time); 994 ASSERT(total_time >= gc_time);
990 int result= static_cast<int>((static_cast<double>(gc_time) / 995 int result= static_cast<int>((static_cast<double>(gc_time) /
991 static_cast<double>(total_time)) * 100); 996 static_cast<double>(total_time)) * 100);
992 return result; 997 return result;
993 } 998 }
994 } 999 }
995 1000
996 } // namespace dart 1001 } // namespace dart
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698