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

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

Issue 1278353002: Disable --global-var-shortcuts. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 4 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 | no next file » | 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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 "Dump heap object allocations/movements/size_updates") 671 "Dump heap object allocations/movements/size_updates")
672 672
673 673
674 // v8.cc 674 // v8.cc
675 DEFINE_BOOL(use_idle_notification, true, 675 DEFINE_BOOL(use_idle_notification, true,
676 "Use idle notification to reduce memory footprint.") 676 "Use idle notification to reduce memory footprint.")
677 // ic.cc 677 // ic.cc
678 DEFINE_BOOL(use_ic, true, "use inline caching") 678 DEFINE_BOOL(use_ic, true, "use inline caching")
679 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions") 679 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions")
680 DEFINE_BOOL(vector_stores, false, "use vectors for store ics") 680 DEFINE_BOOL(vector_stores, false, "use vectors for store ics")
681 DEFINE_BOOL(global_var_shortcuts, true, "use ic-less global loads and stores") 681 DEFINE_BOOL(global_var_shortcuts, false, "use ic-less global loads and stores")
682 682
683 // macro-assembler-ia32.cc 683 // macro-assembler-ia32.cc
684 DEFINE_BOOL(native_code_counters, false, 684 DEFINE_BOOL(native_code_counters, false,
685 "generate extra code for manipulating stats counters") 685 "generate extra code for manipulating stats counters")
686 686
687 // mark-compact.cc 687 // mark-compact.cc
688 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC") 688 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC")
689 DEFINE_BOOL(never_compact, false, 689 DEFINE_BOOL(never_compact, false,
690 "Never perform compaction on full GC - testing only") 690 "Never perform compaction on full GC - testing only")
691 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections") 691 DEFINE_BOOL(compact_code_space, true, "Compact code space on full collections")
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1078 #undef DEFINE_ALIAS_FLOAT 1078 #undef DEFINE_ALIAS_FLOAT
1079 #undef DEFINE_ALIAS_ARGS 1079 #undef DEFINE_ALIAS_ARGS
1080 1080
1081 #undef FLAG_MODE_DECLARE 1081 #undef FLAG_MODE_DECLARE
1082 #undef FLAG_MODE_DEFINE 1082 #undef FLAG_MODE_DEFINE
1083 #undef FLAG_MODE_DEFINE_DEFAULTS 1083 #undef FLAG_MODE_DEFINE_DEFAULTS
1084 #undef FLAG_MODE_META 1084 #undef FLAG_MODE_META
1085 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1085 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1086 1086
1087 #undef COMMA 1087 #undef COMMA
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698