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

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

Issue 1230753004: [Interpreter] Add BytecodeArray class and add to SharedFunctionInfo. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Use BytecodeArray in bytecode emission path in interpreter. 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
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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 "Enables optimizations which favor memory size over execution " 270 "Enables optimizations which favor memory size over execution "
271 "speed") 271 "speed")
272 272
273 DEFINE_VALUE_IMPLICATION(optimize_for_size, max_semi_space_size, 1) 273 DEFINE_VALUE_IMPLICATION(optimize_for_size, max_semi_space_size, 1)
274 274
275 // Flags for data representation optimizations 275 // Flags for data representation optimizations
276 DEFINE_BOOL(unbox_double_arrays, true, "automatically unbox arrays of doubles") 276 DEFINE_BOOL(unbox_double_arrays, true, "automatically unbox arrays of doubles")
277 DEFINE_BOOL(string_slices, true, "use string slices") 277 DEFINE_BOOL(string_slices, true, "use string slices")
278 278
279 // Flags for Ignition. 279 // Flags for Ignition.
280 DEFINE_BOOL(ignition, true, "use ignition interpreter") 280 DEFINE_BOOL(ignition, false, "use ignition interpreter")
rmcilroy 2015/07/15 13:33:37 I'll change this in my CL so it should disappear o
oth 2015/07/16 09:15:49 Acknowledged.
281 DEFINE_STRING(ignition_filter, "~~", "filter for ignition interpreter") 281 DEFINE_STRING(ignition_filter, "~~", "filter for ignition interpreter")
282 DEFINE_BOOL(trace_ignition_codegen, true, 282 DEFINE_BOOL(trace_ignition_codegen, true,
283 "trace the codegen of ignition interpreter bytecode handlers") 283 "trace the codegen of ignition interpreter bytecode handlers")
284 284
285 // Flags for Crankshaft. 285 // Flags for Crankshaft.
286 DEFINE_BOOL(crankshaft, true, "use crankshaft") 286 DEFINE_BOOL(crankshaft, true, "use crankshaft")
287 DEFINE_STRING(hydrogen_filter, "*", "optimization filter") 287 DEFINE_STRING(hydrogen_filter, "*", "optimization filter")
288 DEFINE_BOOL(use_gvn, true, "use hydrogen global value numbering") 288 DEFINE_BOOL(use_gvn, true, "use hydrogen global value numbering")
289 DEFINE_INT(gvn_iterations, 3, "maximum number of GVN fix-point iterations") 289 DEFINE_INT(gvn_iterations, 3, "maximum number of GVN fix-point iterations")
290 DEFINE_BOOL(use_canonicalizing, true, "use hydrogen instruction canonicalizing") 290 DEFINE_BOOL(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
(...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 #undef DEFINE_ALIAS_FLOAT 1068 #undef DEFINE_ALIAS_FLOAT
1069 #undef DEFINE_ALIAS_ARGS 1069 #undef DEFINE_ALIAS_ARGS
1070 1070
1071 #undef FLAG_MODE_DECLARE 1071 #undef FLAG_MODE_DECLARE
1072 #undef FLAG_MODE_DEFINE 1072 #undef FLAG_MODE_DEFINE
1073 #undef FLAG_MODE_DEFINE_DEFAULTS 1073 #undef FLAG_MODE_DEFINE_DEFAULTS
1074 #undef FLAG_MODE_META 1074 #undef FLAG_MODE_META
1075 #undef FLAG_MODE_DEFINE_IMPLICATIONS 1075 #undef FLAG_MODE_DEFINE_IMPLICATIONS
1076 1076
1077 #undef COMMA 1077 #undef COMMA
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698