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

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

Issue 1722013002: Enable concurrent sweep on MIPS and ARM64. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: clrex and assembler tests Created 4 years, 9 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
« no previous file with comments | « runtime/vm/disassembler_mips.cc ('k') | runtime/vm/simulator_arm64.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 (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 17 matching lines...) Expand all
28 DEFINE_FLAG(bool, print_free_list_before_gc, false, 28 DEFINE_FLAG(bool, print_free_list_before_gc, false,
29 "Print free list statistics before a GC"); 29 "Print free list statistics before a GC");
30 DEFINE_FLAG(bool, print_free_list_after_gc, false, 30 DEFINE_FLAG(bool, print_free_list_after_gc, false,
31 "Print free list statistics after a GC"); 31 "Print free list statistics after a GC");
32 DEFINE_FLAG(int, code_collection_interval_in_us, 30000000, 32 DEFINE_FLAG(int, code_collection_interval_in_us, 30000000,
33 "Time between attempts to collect unused code."); 33 "Time between attempts to collect unused code.");
34 DEFINE_FLAG(bool, log_code_drop, false, 34 DEFINE_FLAG(bool, log_code_drop, false,
35 "Emit a log message when pointers to unused code are dropped."); 35 "Emit a log message when pointers to unused code are dropped.");
36 DEFINE_FLAG(bool, always_drop_code, false, 36 DEFINE_FLAG(bool, always_drop_code, false,
37 "Always try to drop code if the function's usage counter is >= 0"); 37 "Always try to drop code if the function's usage counter is >= 0");
38 #if defined(TARGET_ARCH_MIPS) || defined(TARGET_ARCH_ARM64)
39 DEFINE_FLAG(bool, concurrent_sweep, false,
40 "Concurrent sweep for old generation.");
41 #else // TARGET_ARCH_MIPS || TARGET_ARCH_ARM64
42 DEFINE_FLAG(bool, concurrent_sweep, true, 38 DEFINE_FLAG(bool, concurrent_sweep, true,
43 "Concurrent sweep for old generation."); 39 "Concurrent sweep for old generation.");
44 #endif // TARGET_ARCH_MIPS || TARGET_ARCH_ARM64
45 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions."); 40 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions.");
46 41
47 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) { 42 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) {
48 ASSERT(memory != NULL); 43 ASSERT(memory != NULL);
49 ASSERT(memory->size() > VirtualMemory::PageSize()); 44 ASSERT(memory->size() > VirtualMemory::PageSize());
50 bool is_executable = (type == kExecutable); 45 bool is_executable = (type == kExecutable);
51 // Create the new page executable (RWX) only if we're not in W^X mode 46 // Create the new page executable (RWX) only if we're not in W^X mode
52 bool create_executable = !FLAG_write_protect_code && is_executable; 47 bool create_executable = !FLAG_write_protect_code && is_executable;
53 if (!memory->Commit(create_executable)) { 48 if (!memory->Commit(create_executable)) {
54 return NULL; 49 return NULL;
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1235 return 0; 1230 return 0;
1236 } else { 1231 } else {
1237 ASSERT(total_time >= gc_time); 1232 ASSERT(total_time >= gc_time);
1238 int result = static_cast<int>((static_cast<double>(gc_time) / 1233 int result = static_cast<int>((static_cast<double>(gc_time) /
1239 static_cast<double>(total_time)) * 100); 1234 static_cast<double>(total_time)) * 100);
1240 return result; 1235 return result;
1241 } 1236 }
1242 } 1237 }
1243 1238
1244 } // namespace dart 1239 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/disassembler_mips.cc ('k') | runtime/vm/simulator_arm64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698