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

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

Issue 1216153004: Remove deprecated --incremental-code-compaction flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | src/heap/mark-compact.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file defines all of the flags. It is separated into different section, 5 // This file defines all of the flags. It is separated into different section,
6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the 6 // for Debug, Release, Logging and Profiling, etc. To add a new flag, find the
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'. 7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 // 8 //
9 // This include does not have a guard, because it is a template-style include, 9 // This include does not have a guard, because it is a template-style include,
10 // which can be included multiple times in different modes. It expects to have 10 // which can be included multiple times in different modes. It expects to have
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 DEFINE_BOOL(vector_stores, false, "use vectors for store ics") 665 DEFINE_BOOL(vector_stores, false, "use vectors for store ics")
666 666
667 // macro-assembler-ia32.cc 667 // macro-assembler-ia32.cc
668 DEFINE_BOOL(native_code_counters, false, 668 DEFINE_BOOL(native_code_counters, false,
669 "generate extra code for manipulating stats counters") 669 "generate extra code for manipulating stats counters")
670 670
671 // mark-compact.cc 671 // mark-compact.cc
672 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") 672 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC")
673 DEFINE_BOOL(never_compact, false, 673 DEFINE_BOOL(never_compact, false,
674 "Never perform compaction on full GC - testing only") 674 "Never perform compaction on full GC - testing only")
675 DEFINE_BOOL(compact_code_space, true, 675 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections")
676 "Compact code space on full non-incremental collections")
677 DEFINE_BOOL(incremental_code_compaction, true,
678 "Compact code space on full incremental collections")
679 DEFINE_BOOL(cleanup_code_caches_at_gc, true, 676 DEFINE_BOOL(cleanup_code_caches_at_gc, true,
680 "Flush inline caches prior to mark compact collection and " 677 "Flush inline caches prior to mark compact collection and "
681 "flush code caches in maps during mark compact cycle.") 678 "flush code caches in maps during mark compact cycle.")
682 DEFINE_BOOL(use_marking_progress_bar, true, 679 DEFINE_BOOL(use_marking_progress_bar, true,
683 "Use a progress bar to scan large objects in increments when " 680 "Use a progress bar to scan large objects in increments when "
684 "incremental marking is active.") 681 "incremental marking is active.")
685 DEFINE_BOOL(zap_code_space, DEBUG_BOOL, 682 DEFINE_BOOL(zap_code_space, DEBUG_BOOL,
686 "Zap free memory in code space with 0xCC while sweeping.") 683 "Zap free memory in code space with 0xCC while sweeping.")
687 DEFINE_INT(random_seed, 0, 684 DEFINE_INT(random_seed, 0,
688 "Default seed for initializing random generator " 685 "Default seed for initializing random generator "
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 #undef DEFINE_ALIAS_FLOAT 1060 #undef DEFINE_ALIAS_FLOAT
1064 #undef DEFINE_ALIAS_ARGS 1061 #undef DEFINE_ALIAS_ARGS
1065 1062
1066 #undef FLAG_MODE_DECLARE 1063 #undef FLAG_MODE_DECLARE
1067 #undef FLAG_MODE_DEFINE 1064 #undef FLAG_MODE_DEFINE
1068 #undef FLAG_MODE_DEFINE_DEFAULTS 1065 #undef FLAG_MODE_DEFINE_DEFAULTS
1069 #undef FLAG_MODE_META 1066 #undef FLAG_MODE_META
1070 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1067 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1071 1068
1072 #undef COMMA 1069 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | src/heap/mark-compact.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698