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

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

Issue 2400613003: PreParsing inner functions: Fix declaration-only variables, part 2. (Closed)
Patch Set: rebased Created 4 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
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 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 "Trace updates to prototype user tracking") 832 "Trace updates to prototype user tracking")
833 DEFINE_BOOL(use_verbose_printer, true, "allows verbose printing") 833 DEFINE_BOOL(use_verbose_printer, true, "allows verbose printing")
834 DEFINE_BOOL(trace_for_in_enumerate, false, "Trace for-in enumerate slow-paths") 834 DEFINE_BOOL(trace_for_in_enumerate, false, "Trace for-in enumerate slow-paths")
835 #if TRACE_MAPS 835 #if TRACE_MAPS
836 DEFINE_BOOL(trace_maps, false, "trace map creation") 836 DEFINE_BOOL(trace_maps, false, "trace map creation")
837 #endif 837 #endif
838 838
839 // parser.cc 839 // parser.cc
840 DEFINE_BOOL(allow_natives_syntax, false, "allow natives syntax") 840 DEFINE_BOOL(allow_natives_syntax, false, "allow natives syntax")
841 DEFINE_BOOL(trace_parse, false, "trace parsing and preparsing") 841 DEFINE_BOOL(trace_parse, false, "trace parsing and preparsing")
842 DEFINE_BOOL(lazy_inner_functions, false, "enable lazy parsing inner functions") 842 DEFINE_BOOL(lazy_inner_functions, true, "enable lazy parsing inner functions")
843 843
844 // simulator-arm.cc, simulator-arm64.cc and simulator-mips.cc 844 // simulator-arm.cc, simulator-arm64.cc and simulator-mips.cc
845 DEFINE_BOOL(trace_sim, false, "Trace simulator execution") 845 DEFINE_BOOL(trace_sim, false, "Trace simulator execution")
846 DEFINE_BOOL(debug_sim, false, "Enable debugging the simulator") 846 DEFINE_BOOL(debug_sim, false, "Enable debugging the simulator")
847 DEFINE_BOOL(check_icache, false, 847 DEFINE_BOOL(check_icache, false,
848 "Check icache flushes in ARM and MIPS simulator") 848 "Check icache flushes in ARM and MIPS simulator")
849 DEFINE_INT(stop_sim_at, 0, "Simulator stop after x number of instructions") 849 DEFINE_INT(stop_sim_at, 0, "Simulator stop after x number of instructions")
850 #if defined(V8_TARGET_ARCH_ARM64) || defined(V8_TARGET_ARCH_MIPS64) || \ 850 #if defined(V8_TARGET_ARCH_ARM64) || defined(V8_TARGET_ARCH_MIPS64) || \
851 defined(V8_TARGET_ARCH_PPC64) 851 defined(V8_TARGET_ARCH_PPC64)
852 DEFINE_INT(sim_stack_alignment, 16, 852 DEFINE_INT(sim_stack_alignment, 16,
(...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 #undef DEFINE_ALIAS_FLOAT 1220 #undef DEFINE_ALIAS_FLOAT
1221 #undef DEFINE_ALIAS_ARGS 1221 #undef DEFINE_ALIAS_ARGS
1222 1222
1223 #undef FLAG_MODE_DECLARE 1223 #undef FLAG_MODE_DECLARE
1224 #undef FLAG_MODE_DEFINE 1224 #undef FLAG_MODE_DEFINE
1225 #undef FLAG_MODE_DEFINE_DEFAULTS 1225 #undef FLAG_MODE_DEFINE_DEFAULTS
1226 #undef FLAG_MODE_META 1226 #undef FLAG_MODE_META
1227 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1227 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1228 1228
1229 #undef COMMA 1229 #undef COMMA
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698