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

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

Issue 1974873002: Disable concurrent marking/sweeping, and background compilation on ARMv5TE (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: More shuffling things around Created 4 years, 7 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/intrinsifier.cc ('k') | runtime/vm/scavenger.cc » ('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 DEFINE_FLAG(bool, concurrent_sweep, true,
39 "Concurrent sweep for old generation.");
40 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions."); 38 DEFINE_FLAG(bool, log_growth, false, "Log PageSpace growth policy decisions.");
41 39
42 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) { 40 HeapPage* HeapPage::Initialize(VirtualMemory* memory, PageType type) {
43 ASSERT(memory != NULL); 41 ASSERT(memory != NULL);
44 ASSERT(memory->size() > VirtualMemory::PageSize()); 42 ASSERT(memory->size() > VirtualMemory::PageSize());
45 bool is_executable = (type == kExecutable); 43 bool is_executable = (type == kExecutable);
46 // Create the new page executable (RWX) only if we're not in W^X mode 44 // Create the new page executable (RWX) only if we're not in W^X mode
47 bool create_executable = !FLAG_write_protect_code && is_executable; 45 bool create_executable = !FLAG_write_protect_code && is_executable;
48 if (!memory->Commit(create_executable)) { 46 if (!memory->Commit(create_executable)) {
49 return NULL; 47 return NULL;
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 return 0; 1234 return 0;
1237 } else { 1235 } else {
1238 ASSERT(total_time >= gc_time); 1236 ASSERT(total_time >= gc_time);
1239 int result = static_cast<int>((static_cast<double>(gc_time) / 1237 int result = static_cast<int>((static_cast<double>(gc_time) /
1240 static_cast<double>(total_time)) * 100); 1238 static_cast<double>(total_time)) * 100);
1241 return result; 1239 return result;
1242 } 1240 }
1243 } 1241 }
1244 1242
1245 } // namespace dart 1243 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/intrinsifier.cc ('k') | runtime/vm/scavenger.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698