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

Side by Side Diff: src/flag-definitions.h

Issue 3615009: Parallelize marking phase of mark-sweep/compact collection cycle. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « src/atomic.h ('k') | src/heap.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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 "Use idle notification to reduce memory footprint.") 204 "Use idle notification to reduce memory footprint.")
205 // ic.cc 205 // ic.cc
206 DEFINE_bool(use_ic, true, "use inline caching") 206 DEFINE_bool(use_ic, true, "use inline caching")
207 207
208 // macro-assembler-ia32.cc 208 // macro-assembler-ia32.cc
209 DEFINE_bool(native_code_counters, false, 209 DEFINE_bool(native_code_counters, false,
210 "generate extra code for manipulating stats counters") 210 "generate extra code for manipulating stats counters")
211 211
212 // mark-compact.cc 212 // mark-compact.cc
213 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 213 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
214 DEFINE_bool(parallel_marking, false,
215 "Use helper threads during marking phase of mark-sweep/compact.")
216 DEFINE_int(number_of_markers, 1,
217 "Number of helper threads tp use during marking phase of "
218 " mark-sweep/compact.")
214 DEFINE_bool(never_compact, false, 219 DEFINE_bool(never_compact, false,
215 "Never perform compaction on full GC - testing only") 220 "Never perform compaction on full GC - testing only")
216 DEFINE_bool(cleanup_ics_at_gc, true, 221 DEFINE_bool(cleanup_ics_at_gc, true,
217 "Flush inline caches prior to mark compact collection.") 222 "Flush inline caches prior to mark compact collection.")
218 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, 223 DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
219 "Flush code caches in maps during mark compact cycle.") 224 "Flush code caches in maps during mark compact cycle.")
220 DEFINE_int(random_seed, 0, 225 DEFINE_int(random_seed, 0,
221 "Default seed for initializing random generator " 226 "Default seed for initializing random generator "
222 "(0, the default, means to use system random).") 227 "(0, the default, means to use system random).")
223 228
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 #undef FLAG 454 #undef FLAG
450 455
451 #undef DEFINE_bool 456 #undef DEFINE_bool
452 #undef DEFINE_int 457 #undef DEFINE_int
453 #undef DEFINE_string 458 #undef DEFINE_string
454 459
455 #undef FLAG_MODE_DECLARE 460 #undef FLAG_MODE_DECLARE
456 #undef FLAG_MODE_DEFINE 461 #undef FLAG_MODE_DEFINE
457 #undef FLAG_MODE_DEFINE_DEFAULTS 462 #undef FLAG_MODE_DEFINE_DEFAULTS
458 #undef FLAG_MODE_META 463 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « src/atomic.h ('k') | src/heap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698