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

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

Issue 6970004: Introduce lazy sweeping. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/incremental-marking.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 #endif 273 #endif
274 274
275 // macro-assembler-ia32.cc 275 // macro-assembler-ia32.cc
276 DEFINE_bool(native_code_counters, false, 276 DEFINE_bool(native_code_counters, false,
277 "generate extra code for manipulating stats counters") 277 "generate extra code for manipulating stats counters")
278 278
279 // mark-compact.cc 279 // mark-compact.cc
280 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 280 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
281 DEFINE_bool(never_compact, false, 281 DEFINE_bool(never_compact, false,
282 "Never perform compaction on full GC - testing only") 282 "Never perform compaction on full GC - testing only")
283 DEFINE_bool(lazy_sweeping, true,
284 "Use lazy sweeping for old pointer and data spaces")
283 DEFINE_bool(cleanup_ics_at_gc, true, 285 DEFINE_bool(cleanup_ics_at_gc, true,
284 "Flush inline caches prior to mark compact collection.") 286 "Flush inline caches prior to mark compact collection.")
285 DEFINE_bool(cleanup_caches_in_maps_at_gc, true, 287 DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
286 "Flush code caches in maps during mark compact cycle.") 288 "Flush code caches in maps during mark compact cycle.")
287 DEFINE_int(random_seed, 0, 289 DEFINE_int(random_seed, 0,
288 "Default seed for initializing random generator " 290 "Default seed for initializing random generator "
289 "(0, the default, means to use system random).") 291 "(0, the default, means to use system random).")
290 292
291 DEFINE_bool(canonicalize_object_literal_maps, true, 293 DEFINE_bool(canonicalize_object_literal_maps, true,
292 "Canonicalize maps for object literals.") 294 "Canonicalize maps for object literals.")
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
545 #undef FLAG 547 #undef FLAG
546 548
547 #undef DEFINE_bool 549 #undef DEFINE_bool
548 #undef DEFINE_int 550 #undef DEFINE_int
549 #undef DEFINE_string 551 #undef DEFINE_string
550 552
551 #undef FLAG_MODE_DECLARE 553 #undef FLAG_MODE_DECLARE
552 #undef FLAG_MODE_DEFINE 554 #undef FLAG_MODE_DEFINE
553 #undef FLAG_MODE_DEFINE_DEFAULTS 555 #undef FLAG_MODE_DEFINE_DEFAULTS
554 #undef FLAG_MODE_META 556 #undef FLAG_MODE_META
OLDNEW
« no previous file with comments | « no previous file | src/heap.h » ('j') | src/incremental-marking.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698