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

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

Issue 10907174: Fix invariant so that we cannot record relocation slots for (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 8 years, 3 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/incremental-marking.h » ('j') | src/incremental-marking.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 "generate extra code for manipulating stats counters") 405 "generate extra code for manipulating stats counters")
406 406
407 // mark-compact.cc 407 // mark-compact.cc
408 DEFINE_bool(always_compact, false, "Perform compaction on every full GC") 408 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
409 DEFINE_bool(lazy_sweeping, true, 409 DEFINE_bool(lazy_sweeping, true,
410 "Use lazy sweeping for old pointer and data spaces") 410 "Use lazy sweeping for old pointer and data spaces")
411 DEFINE_bool(never_compact, false, 411 DEFINE_bool(never_compact, false,
412 "Never perform compaction on full GC - testing only") 412 "Never perform compaction on full GC - testing only")
413 DEFINE_bool(compact_code_space, true, 413 DEFINE_bool(compact_code_space, true,
414 "Compact code space on full non-incremental collections") 414 "Compact code space on full non-incremental collections")
415 DEFINE_bool(incremental_code_compaction, false,
416 "Compact code space on full incremental collections")
415 DEFINE_bool(cleanup_code_caches_at_gc, true, 417 DEFINE_bool(cleanup_code_caches_at_gc, true,
416 "Flush inline caches prior to mark compact collection and " 418 "Flush inline caches prior to mark compact collection and "
417 "flush code caches in maps during mark compact cycle.") 419 "flush code caches in maps during mark compact cycle.")
418 DEFINE_int(random_seed, 0, 420 DEFINE_int(random_seed, 0,
419 "Default seed for initializing random generator " 421 "Default seed for initializing random generator "
420 "(0, the default, means to use system random).") 422 "(0, the default, means to use system random).")
421 423
422 // objects.cc 424 // objects.cc
423 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") 425 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
424 426
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 #undef DEFINE_bool 691 #undef DEFINE_bool
690 #undef DEFINE_int 692 #undef DEFINE_int
691 #undef DEFINE_string 693 #undef DEFINE_string
692 #undef DEFINE_implication 694 #undef DEFINE_implication
693 695
694 #undef FLAG_MODE_DECLARE 696 #undef FLAG_MODE_DECLARE
695 #undef FLAG_MODE_DEFINE 697 #undef FLAG_MODE_DEFINE
696 #undef FLAG_MODE_DEFINE_DEFAULTS 698 #undef FLAG_MODE_DEFINE_DEFAULTS
697 #undef FLAG_MODE_META 699 #undef FLAG_MODE_META
698 #undef FLAG_MODE_DEFINE_IMPLICATIONS 700 #undef FLAG_MODE_DEFINE_IMPLICATIONS
OLDNEW
« no previous file with comments | « no previous file | src/incremental-marking.h » ('j') | src/incremental-marking.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698