Upstream version 9.38.207.0
[platform/framework/web/crosswalk.git] / src / v8 / src / flag-definitions.h
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
3 // found in the LICENSE file.
4
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
7 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
8 //
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
11 // a mode defined before it's included.  The modes are FLAG_MODE_... below:
12
13 // We want to declare the names of the variables for the header file.  Normally
14 // this will just be an extern declaration, but for a readonly flag we let the
15 // compiler make better optimizations by giving it the value.
16 #if defined(FLAG_MODE_DECLARE)
17 #define FLAG_FULL(ftype, ctype, nam, def, cmt) extern ctype FLAG_##nam;
18 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
19   static ctype const FLAG_##nam = def;
20
21 // We want to supply the actual storage and value for the flag variable in the
22 // .cc file.  We only do this for writable flags.
23 #elif defined(FLAG_MODE_DEFINE)
24 #define FLAG_FULL(ftype, ctype, nam, def, cmt) ctype FLAG_##nam = def;
25
26 // We need to define all of our default values so that the Flag structure can
27 // access them by pointer.  These are just used internally inside of one .cc,
28 // for MODE_META, so there is no impact on the flags interface.
29 #elif defined(FLAG_MODE_DEFINE_DEFAULTS)
30 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
31   static ctype const FLAGDEFAULT_##nam = def;
32
33 // We want to write entries into our meta data table, for internal parsing and
34 // printing / etc in the flag parser code.  We only do this for writable flags.
35 #elif defined(FLAG_MODE_META)
36 #define FLAG_FULL(ftype, ctype, nam, def, cmt)                              \
37   { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false } \
38   ,
39 #define FLAG_ALIAS(ftype, ctype, alias, nam)                     \
40   {                                                              \
41     Flag::TYPE_##ftype, #alias, &FLAG_##nam, &FLAGDEFAULT_##nam, \
42         "alias for --" #nam, false                               \
43   }                                                              \
44   ,
45
46 // We produce the code to set flags when it is implied by another flag.
47 #elif defined(FLAG_MODE_DEFINE_IMPLICATIONS)
48 #define DEFINE_IMPLICATION(whenflag, thenflag) \
49   if (FLAG_##whenflag) FLAG_##thenflag = true;
50
51 #define DEFINE_NEG_IMPLICATION(whenflag, thenflag) \
52   if (FLAG_##whenflag) FLAG_##thenflag = false;
53
54 #else
55 #error No mode supplied when including flags.defs
56 #endif
57
58 // Dummy defines for modes where it is not relevant.
59 #ifndef FLAG_FULL
60 #define FLAG_FULL(ftype, ctype, nam, def, cmt)
61 #endif
62
63 #ifndef FLAG_READONLY
64 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
65 #endif
66
67 #ifndef FLAG_ALIAS
68 #define FLAG_ALIAS(ftype, ctype, alias, nam)
69 #endif
70
71 #ifndef DEFINE_IMPLICATION
72 #define DEFINE_IMPLICATION(whenflag, thenflag)
73 #endif
74
75 #ifndef DEFINE_NEG_IMPLICATION
76 #define DEFINE_NEG_IMPLICATION(whenflag, thenflag)
77 #endif
78
79 #define COMMA ,
80
81 #ifdef FLAG_MODE_DECLARE
82 // Structure used to hold a collection of arguments to the JavaScript code.
83 struct JSArguments {
84  public:
85   inline const char*& operator[](int idx) const { return argv[idx]; }
86   static JSArguments Create(int argc, const char** argv) {
87     JSArguments args;
88     args.argc = argc;
89     args.argv = argv;
90     return args;
91   }
92   int argc;
93   const char** argv;
94 };
95
96 struct MaybeBoolFlag {
97   static MaybeBoolFlag Create(bool has_value, bool value) {
98     MaybeBoolFlag flag;
99     flag.has_value = has_value;
100     flag.value = value;
101     return flag;
102   }
103   bool has_value;
104   bool value;
105 };
106 #endif
107
108 #if (defined CAN_USE_VFP3_INSTRUCTIONS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
109 #define ENABLE_VFP3_DEFAULT true
110 #else
111 #define ENABLE_VFP3_DEFAULT false
112 #endif
113 #if (defined CAN_USE_ARMV7_INSTRUCTIONS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
114 #define ENABLE_ARMV7_DEFAULT true
115 #else
116 #define ENABLE_ARMV7_DEFAULT false
117 #endif
118 #if (defined CAN_USE_VFP32DREGS) || !(defined ARM_TEST_NO_FEATURE_PROBE)
119 #define ENABLE_32DREGS_DEFAULT true
120 #else
121 #define ENABLE_32DREGS_DEFAULT false
122 #endif
123 #if (defined CAN_USE_NEON) || !(defined ARM_TEST_NO_FEATURE_PROBE)
124 # define ENABLE_NEON_DEFAULT true
125 #else
126 # define ENABLE_NEON_DEFAULT false
127 #endif
128
129 #define DEFINE_BOOL(nam, def, cmt) FLAG(BOOL, bool, nam, def, cmt)
130 #define DEFINE_MAYBE_BOOL(nam, cmt) \
131   FLAG(MAYBE_BOOL, MaybeBoolFlag, nam, {false COMMA false}, cmt)
132 #define DEFINE_INT(nam, def, cmt) FLAG(INT, int, nam, def, cmt)
133 #define DEFINE_FLOAT(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
134 #define DEFINE_STRING(nam, def, cmt) FLAG(STRING, const char*, nam, def, cmt)
135 #define DEFINE_ARGS(nam, cmt) FLAG(ARGS, JSArguments, nam, {0 COMMA NULL}, cmt)
136
137 #define DEFINE_ALIAS_BOOL(alias, nam) FLAG_ALIAS(BOOL, bool, alias, nam)
138 #define DEFINE_ALIAS_INT(alias, nam) FLAG_ALIAS(INT, int, alias, nam)
139 #define DEFINE_ALIAS_FLOAT(alias, nam) FLAG_ALIAS(FLOAT, double, alias, nam)
140 #define DEFINE_ALIAS_STRING(alias, nam) \
141   FLAG_ALIAS(STRING, const char*, alias, nam)
142 #define DEFINE_ALIAS_ARGS(alias, nam) FLAG_ALIAS(ARGS, JSArguments, alias, nam)
143
144 //
145 // Flags in all modes.
146 //
147 #define FLAG FLAG_FULL
148
149 // Flags for language modes and experimental language features.
150 DEFINE_BOOL(simd_object, false, "enable SIMD object and operations")
151 DEFINE_BOOL(use_strict, false, "enforce strict mode")
152 DEFINE_BOOL(es_staging, false, "enable upcoming ES6+ features")
153
154 DEFINE_BOOL(harmony_scoping, false, "enable harmony block scoping")
155 DEFINE_BOOL(harmony_modules, false,
156             "enable harmony modules (implies block scoping)")
157 DEFINE_BOOL(harmony_proxies, false, "enable harmony proxies")
158 DEFINE_BOOL(harmony_generators, false, "enable harmony generators")
159 DEFINE_BOOL(harmony_numeric_literals, false,
160             "enable harmony numeric literals (0o77, 0b11)")
161 DEFINE_BOOL(harmony_strings, false, "enable harmony string")
162 DEFINE_BOOL(harmony_arrays, false, "enable harmony arrays")
163 DEFINE_BOOL(harmony_arrow_functions, false, "enable harmony arrow functions")
164 DEFINE_BOOL(harmony, false, "enable all harmony features (except proxies)")
165
166 DEFINE_IMPLICATION(harmony, harmony_scoping)
167 DEFINE_IMPLICATION(harmony, harmony_modules)
168 // TODO(rossberg): Reenable when problems are sorted out.
169 // DEFINE_IMPLICATION(harmony, harmony_proxies)
170 DEFINE_IMPLICATION(harmony, harmony_generators)
171 DEFINE_IMPLICATION(harmony, harmony_numeric_literals)
172 DEFINE_IMPLICATION(harmony, harmony_strings)
173 DEFINE_IMPLICATION(harmony, harmony_arrays)
174 DEFINE_IMPLICATION(harmony, harmony_arrow_functions)
175 DEFINE_IMPLICATION(harmony_modules, harmony_scoping)
176
177 DEFINE_IMPLICATION(harmony, es_staging)
178
179 // Flags for experimental implementation features.
180 DEFINE_BOOL(compiled_keyed_dictionary_loads, true,
181             "use optimizing compiler to generate keyed dictionary load stubs")
182 DEFINE_BOOL(compiled_keyed_generic_loads, false,
183             "use optimizing compiler to generate keyed generic load stubs")
184 DEFINE_BOOL(clever_optimizations, true,
185             "Optimize object size, Array shift, DOM strings and string +")
186 // TODO(hpayer): We will remove this flag as soon as we have pretenuring
187 // support for specific allocation sites.
188 DEFINE_BOOL(pretenuring_call_new, false, "pretenure call new")
189 DEFINE_BOOL(allocation_site_pretenuring, true,
190             "pretenure with allocation sites")
191 DEFINE_BOOL(trace_pretenuring, false,
192             "trace pretenuring decisions of HAllocate instructions")
193 DEFINE_BOOL(trace_pretenuring_statistics, false,
194             "trace allocation site pretenuring statistics")
195 DEFINE_BOOL(track_fields, true, "track fields with only smi values")
196 DEFINE_BOOL(track_double_fields, true, "track fields with double values")
197 DEFINE_BOOL(track_heap_object_fields, true, "track fields with heap values")
198 DEFINE_BOOL(track_computed_fields, true, "track computed boilerplate fields")
199 DEFINE_IMPLICATION(track_double_fields, track_fields)
200 DEFINE_IMPLICATION(track_heap_object_fields, track_fields)
201 DEFINE_IMPLICATION(track_computed_fields, track_fields)
202 DEFINE_BOOL(track_field_types, true, "track field types")
203 DEFINE_IMPLICATION(track_field_types, track_fields)
204 DEFINE_IMPLICATION(track_field_types, track_heap_object_fields)
205 DEFINE_BOOL(smi_binop, true, "support smi representation in binary operations")
206 DEFINE_BOOL(vector_ics, false, "support vector-based ics")
207
208 // Flags for optimization types.
209 DEFINE_BOOL(optimize_for_size, false,
210             "Enables optimizations which favor memory size over execution "
211             "speed.")
212
213 // Flags for data representation optimizations
214 DEFINE_BOOL(unbox_double_arrays, true, "automatically unbox arrays of doubles")
215 DEFINE_BOOL(string_slices, true, "use string slices")
216
217 // Flags for Crankshaft.
218 DEFINE_BOOL(crankshaft, true, "use crankshaft")
219 DEFINE_STRING(hydrogen_filter, "*", "optimization filter")
220 DEFINE_BOOL(use_gvn, true, "use hydrogen global value numbering")
221 DEFINE_INT(gvn_iterations, 3, "maximum number of GVN fix-point iterations")
222 DEFINE_BOOL(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
223 DEFINE_BOOL(use_inlining, true, "use function inlining")
224 DEFINE_BOOL(use_escape_analysis, true, "use hydrogen escape analysis")
225 DEFINE_BOOL(use_allocation_folding, true, "use allocation folding")
226 DEFINE_BOOL(use_local_allocation_folding, false, "only fold in basic blocks")
227 DEFINE_BOOL(use_write_barrier_elimination, true,
228             "eliminate write barriers targeting allocations in optimized code")
229 DEFINE_INT(max_inlining_levels, 5, "maximum number of inlining levels")
230 DEFINE_INT(max_inlined_source_size, 600,
231            "maximum source size in bytes considered for a single inlining")
232 DEFINE_INT(max_inlined_nodes, 196,
233            "maximum number of AST nodes considered for a single inlining")
234 DEFINE_INT(max_inlined_nodes_cumulative, 400,
235            "maximum cumulative number of AST nodes considered for inlining")
236 DEFINE_BOOL(loop_invariant_code_motion, true, "loop invariant code motion")
237 DEFINE_BOOL(fast_math, true, "faster (but maybe less accurate) math functions")
238 DEFINE_BOOL(collect_megamorphic_maps_from_stub_cache, true,
239             "crankshaft harvests type feedback from stub cache")
240 DEFINE_BOOL(hydrogen_stats, false, "print statistics for hydrogen")
241 DEFINE_BOOL(trace_check_elimination, false, "trace check elimination phase")
242 DEFINE_BOOL(trace_hydrogen, false, "trace generated hydrogen to file")
243 DEFINE_STRING(trace_hydrogen_filter, "*", "hydrogen tracing filter")
244 DEFINE_BOOL(trace_hydrogen_stubs, false, "trace generated hydrogen for stubs")
245 DEFINE_STRING(trace_hydrogen_file, NULL, "trace hydrogen to given file name")
246 DEFINE_STRING(trace_phase, "HLZ", "trace generated IR for specified phases")
247 DEFINE_BOOL(trace_inlining, false, "trace inlining decisions")
248 DEFINE_BOOL(trace_load_elimination, false, "trace load elimination")
249 DEFINE_BOOL(trace_store_elimination, false, "trace store elimination")
250 DEFINE_BOOL(trace_alloc, false, "trace register allocator")
251 DEFINE_BOOL(trace_all_uses, false, "trace all use positions")
252 DEFINE_BOOL(trace_range, false, "trace range analysis")
253 DEFINE_BOOL(trace_gvn, false, "trace global value numbering")
254 DEFINE_BOOL(trace_representation, false, "trace representation types")
255 DEFINE_BOOL(trace_removable_simulates, false, "trace removable simulates")
256 DEFINE_BOOL(trace_escape_analysis, false, "trace hydrogen escape analysis")
257 DEFINE_BOOL(trace_allocation_folding, false, "trace allocation folding")
258 DEFINE_BOOL(trace_track_allocation_sites, false,
259             "trace the tracking of allocation sites")
260 DEFINE_BOOL(trace_migration, false, "trace object migration")
261 DEFINE_BOOL(trace_generalization, false, "trace map generalization")
262 DEFINE_BOOL(stress_pointer_maps, false, "pointer map for every instruction")
263 DEFINE_BOOL(stress_environments, false, "environment for every instruction")
264 DEFINE_INT(deopt_every_n_times, 0,
265            "deoptimize every n times a deopt point is passed")
266 DEFINE_INT(deopt_every_n_garbage_collections, 0,
267            "deoptimize every n garbage collections")
268 DEFINE_BOOL(print_deopt_stress, false, "print number of possible deopt points")
269 DEFINE_BOOL(trap_on_deopt, false, "put a break point before deoptimizing")
270 DEFINE_BOOL(trap_on_stub_deopt, false,
271             "put a break point before deoptimizing a stub")
272 DEFINE_BOOL(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
273 DEFINE_BOOL(polymorphic_inlining, true, "polymorphic inlining")
274 DEFINE_BOOL(use_osr, true, "use on-stack replacement")
275 DEFINE_BOOL(array_bounds_checks_elimination, true,
276             "perform array bounds checks elimination")
277 DEFINE_BOOL(trace_bce, false, "trace array bounds check elimination")
278 DEFINE_BOOL(array_bounds_checks_hoisting, false,
279             "perform array bounds checks hoisting")
280 DEFINE_BOOL(array_index_dehoisting, true, "perform array index dehoisting")
281 DEFINE_BOOL(analyze_environment_liveness, true,
282             "analyze liveness of environment slots and zap dead values")
283 DEFINE_BOOL(load_elimination, true, "use load elimination")
284 DEFINE_BOOL(check_elimination, true, "use check elimination")
285 DEFINE_BOOL(store_elimination, false, "use store elimination")
286 DEFINE_BOOL(dead_code_elimination, true, "use dead code elimination")
287 DEFINE_BOOL(fold_constants, true, "use constant folding")
288 DEFINE_BOOL(trace_dead_code_elimination, false, "trace dead code elimination")
289 DEFINE_BOOL(unreachable_code_elimination, true, "eliminate unreachable code")
290 DEFINE_BOOL(trace_osr, false, "trace on-stack replacement")
291 DEFINE_INT(stress_runs, 0, "number of stress runs")
292 DEFINE_BOOL(optimize_closures, true, "optimize closures")
293 DEFINE_BOOL(lookup_sample_by_shared, true,
294             "when picking a function to optimize, watch for shared function "
295             "info, not JSFunction itself")
296 DEFINE_BOOL(cache_optimized_code, true, "cache optimized code for closures")
297 DEFINE_BOOL(flush_optimized_code_cache, true,
298             "flushes the cache of optimized code for closures on every GC")
299 DEFINE_BOOL(inline_construct, true, "inline constructor calls")
300 DEFINE_BOOL(inline_arguments, true, "inline functions with arguments object")
301 DEFINE_BOOL(inline_accessors, true, "inline JavaScript accessors")
302 DEFINE_INT(escape_analysis_iterations, 2,
303            "maximum number of escape analysis fix-point iterations")
304
305 DEFINE_BOOL(optimize_for_in, true, "optimize functions containing for-in loops")
306 DEFINE_BOOL(opt_safe_uint32_operations, true,
307             "allow uint32 values on optimize frames if they are used only in "
308             "safe operations")
309
310 DEFINE_BOOL(concurrent_recompilation, true,
311             "optimizing hot functions asynchronously on a separate thread")
312 DEFINE_BOOL(trace_concurrent_recompilation, false,
313             "track concurrent recompilation")
314 DEFINE_INT(concurrent_recompilation_queue_length, 8,
315            "the length of the concurrent compilation queue")
316 DEFINE_INT(concurrent_recompilation_delay, 0,
317            "artificial compilation delay in ms")
318 DEFINE_BOOL(block_concurrent_recompilation, false,
319             "block queued jobs until released")
320 DEFINE_BOOL(concurrent_osr, true, "concurrent on-stack replacement")
321 DEFINE_IMPLICATION(concurrent_osr, concurrent_recompilation)
322
323 DEFINE_BOOL(omit_map_checks_for_leaf_maps, true,
324             "do not emit check maps for constant values that have a leaf map, "
325             "deoptimize the optimized code if the layout of the maps changes.")
326
327 // Flags for TurboFan.
328 DEFINE_STRING(turbo_filter, "~", "optimization filter for TurboFan compiler")
329 DEFINE_BOOL(trace_turbo, false, "trace generated TurboFan IR")
330 DEFINE_BOOL(trace_turbo_types, true, "trace generated TurboFan types")
331 DEFINE_BOOL(trace_turbo_scheduler, false, "trace generated TurboFan scheduler")
332 DEFINE_BOOL(turbo_verify, false, "verify TurboFan graphs at each phase")
333 DEFINE_BOOL(turbo_stats, false, "print TurboFan statistics")
334 DEFINE_BOOL(turbo_types, false, "use typed lowering in TurboFan")
335 DEFINE_BOOL(turbo_source_positions, false,
336             "track source code positions when building TurboFan IR")
337 DEFINE_BOOL(context_specialization, true,
338             "enable context specialization in TurboFan")
339 DEFINE_BOOL(turbo_deoptimization, false, "enable deoptimization in TurboFan")
340
341 DEFINE_INT(typed_array_max_size_in_heap, 64,
342            "threshold for in-heap typed array")
343
344 // Profiler flags.
345 DEFINE_INT(frame_count, 1, "number of stack frames inspected by the profiler")
346 // 0x1800 fits in the immediate field of an ARM instruction.
347 DEFINE_INT(interrupt_budget, 0x1800,
348            "execution budget before interrupt is triggered")
349 DEFINE_INT(type_info_threshold, 25,
350            "percentage of ICs that must have type info to allow optimization")
351 DEFINE_INT(generic_ic_threshold, 30,
352            "max percentage of megamorphic/generic ICs to allow optimization")
353 DEFINE_INT(self_opt_count, 130, "call count before self-optimization")
354
355 DEFINE_BOOL(trace_opt_verbose, false, "extra verbose compilation tracing")
356 DEFINE_IMPLICATION(trace_opt_verbose, trace_opt)
357
358 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
359 DEFINE_BOOL(debug_code, false, "generate extra code (assertions) for debugging")
360 DEFINE_BOOL(code_comments, false, "emit comments in code disassembly")
361 DEFINE_BOOL(enable_sse3, true, "enable use of SSE3 instructions if available")
362 DEFINE_BOOL(enable_sse4_1, true,
363             "enable use of SSE4.1 instructions if available")
364 DEFINE_BOOL(enable_sahf, true,
365             "enable use of SAHF instruction if available (X64 only)")
366 DEFINE_BOOL(enable_vfp3, ENABLE_VFP3_DEFAULT,
367             "enable use of VFP3 instructions if available")
368 DEFINE_BOOL(enable_armv7, ENABLE_ARMV7_DEFAULT,
369             "enable use of ARMv7 instructions if available (ARM only)")
370 DEFINE_BOOL(enable_neon, ENABLE_NEON_DEFAULT,
371             "enable use of NEON instructions if available (ARM only)")
372 DEFINE_BOOL(enable_sudiv, true,
373             "enable use of SDIV and UDIV instructions if available (ARM only)")
374 DEFINE_BOOL(enable_mls, true,
375             "enable use of MLS instructions if available (ARM only)")
376 DEFINE_BOOL(enable_movw_movt, false,
377             "enable loading 32-bit constant by means of movw/movt "
378             "instruction pairs (ARM only)")
379 DEFINE_BOOL(enable_unaligned_accesses, true,
380             "enable unaligned accesses for ARMv7 (ARM only)")
381 DEFINE_BOOL(enable_32dregs, ENABLE_32DREGS_DEFAULT,
382             "enable use of d16-d31 registers on ARM - this requires VFP3")
383 DEFINE_BOOL(enable_vldr_imm, false,
384             "enable use of constant pools for double immediate (ARM only)")
385 DEFINE_BOOL(force_long_branches, false,
386             "force all emitted branches to be in long mode (MIPS only)")
387
388 // cpu-arm64.cc
389 DEFINE_BOOL(enable_always_align_csp, true,
390             "enable alignment of csp to 16 bytes on platforms which prefer "
391             "the register to always be aligned (ARM64 only)")
392
393 // bootstrapper.cc
394 DEFINE_STRING(expose_natives_as, NULL, "expose natives in global object")
395 DEFINE_STRING(expose_debug_as, NULL, "expose debug in global object")
396 DEFINE_BOOL(expose_free_buffer, false, "expose freeBuffer extension")
397 DEFINE_BOOL(expose_gc, false, "expose gc extension")
398 DEFINE_STRING(expose_gc_as, NULL,
399               "expose gc extension under the specified name")
400 DEFINE_IMPLICATION(expose_gc_as, expose_gc)
401 DEFINE_BOOL(expose_externalize_string, false,
402             "expose externalize string extension")
403 DEFINE_BOOL(expose_trigger_failure, false, "expose trigger-failure extension")
404 DEFINE_INT(stack_trace_limit, 10, "number of stack frames to capture")
405 DEFINE_BOOL(builtins_in_stack_traces, false,
406             "show built-in functions in stack traces")
407 DEFINE_BOOL(disable_native_files, false, "disable builtin natives files")
408
409 // builtins-ia32.cc
410 DEFINE_BOOL(inline_new, true, "use fast inline allocation")
411
412 // codegen-ia32.cc / codegen-arm.cc
413 DEFINE_BOOL(trace_codegen, false,
414             "print name of functions for which code is generated")
415 DEFINE_BOOL(trace, false, "trace function calls")
416 DEFINE_BOOL(mask_constants_with_cookie, true,
417             "use random jit cookie to mask large constants")
418
419 // codegen.cc
420 DEFINE_BOOL(lazy, true, "use lazy compilation")
421 DEFINE_BOOL(trace_opt, false, "trace lazy optimization")
422 DEFINE_BOOL(trace_opt_stats, false, "trace lazy optimization statistics")
423 DEFINE_BOOL(opt, true, "use adaptive optimizations")
424 DEFINE_BOOL(always_opt, false, "always try to optimize functions")
425 DEFINE_BOOL(always_osr, false, "always try to OSR functions")
426 DEFINE_BOOL(prepare_always_opt, false, "prepare for turning on always opt")
427 DEFINE_BOOL(trace_deopt, false, "trace optimize function deoptimization")
428 DEFINE_BOOL(trace_stub_failures, false,
429             "trace deoptimization of generated code stubs")
430
431 DEFINE_BOOL(serialize_toplevel, false, "enable caching of toplevel scripts")
432
433 // compiler.cc
434 DEFINE_INT(min_preparse_length, 1024,
435            "minimum length for automatic enable preparsing")
436 DEFINE_BOOL(always_full_compiler, false,
437             "try to use the dedicated run-once backend for all code")
438 DEFINE_INT(max_opt_count, 10,
439            "maximum number of optimization attempts before giving up.")
440
441 // compilation-cache.cc
442 DEFINE_BOOL(compilation_cache, true, "enable compilation cache")
443
444 DEFINE_BOOL(cache_prototype_transitions, true, "cache prototype transitions")
445
446 // cpu-profiler.cc
447 DEFINE_INT(cpu_profiler_sampling_interval, 1000,
448            "CPU profiler sampling interval in microseconds")
449
450 // debug.cc
451 DEFINE_BOOL(trace_debug_json, false, "trace debugging JSON request/response")
452 DEFINE_BOOL(trace_js_array_abuse, false,
453             "trace out-of-bounds accesses to JS arrays")
454 DEFINE_BOOL(trace_external_array_abuse, false,
455             "trace out-of-bounds-accesses to external arrays")
456 DEFINE_BOOL(trace_array_abuse, false,
457             "trace out-of-bounds accesses to all arrays")
458 DEFINE_IMPLICATION(trace_array_abuse, trace_js_array_abuse)
459 DEFINE_IMPLICATION(trace_array_abuse, trace_external_array_abuse)
460 DEFINE_BOOL(enable_liveedit, true, "enable liveedit experimental feature")
461 DEFINE_BOOL(hard_abort, true, "abort by crashing")
462
463 // execution.cc
464 // Slightly less than 1MB, since Windows' default stack size for
465 // the main execution thread is 1MB for both 32 and 64-bit.
466 DEFINE_INT(stack_size, 984,
467            "default size of stack region v8 is allowed to use (in kBytes)")
468
469 // frames.cc
470 DEFINE_INT(max_stack_trace_source_length, 300,
471            "maximum length of function source code printed in a stack trace.")
472
473 // full-codegen.cc
474 DEFINE_BOOL(always_inline_smi_code, false,
475             "always inline smi code in non-opt code")
476
477 // heap.cc
478 DEFINE_INT(min_semi_space_size, 0,
479            "min size of a semi-space (in MBytes), the new space consists of two"
480            "semi-spaces")
481 DEFINE_INT(max_semi_space_size, 0,
482            "max size of a semi-space (in MBytes), the new space consists of two"
483            "semi-spaces")
484 DEFINE_INT(max_old_space_size, 0, "max size of the old space (in Mbytes)")
485 DEFINE_INT(max_executable_size, 0, "max size of executable memory (in Mbytes)")
486 DEFINE_BOOL(gc_global, false, "always perform global GCs")
487 DEFINE_INT(gc_interval, -1, "garbage collect after <n> allocations")
488 DEFINE_BOOL(trace_gc, false,
489             "print one trace line following each garbage collection")
490 DEFINE_BOOL(trace_gc_nvp, false,
491             "print one detailed trace line in name=value format "
492             "after each garbage collection")
493 DEFINE_BOOL(trace_gc_ignore_scavenger, false,
494             "do not print trace line after scavenger collection")
495 DEFINE_BOOL(print_cumulative_gc_stat, false,
496             "print cumulative GC statistics in name=value format on exit")
497 DEFINE_BOOL(print_max_heap_committed, false,
498             "print statistics of the maximum memory committed for the heap "
499             "in name=value format on exit")
500 DEFINE_BOOL(trace_gc_verbose, false,
501             "print more details following each garbage collection")
502 DEFINE_BOOL(trace_fragmentation, false,
503             "report fragmentation for old pointer and data pages")
504 DEFINE_BOOL(collect_maps, true,
505             "garbage collect maps from which no objects can be reached")
506 DEFINE_BOOL(weak_embedded_maps_in_ic, true,
507             "make maps embedded in inline cache stubs")
508 DEFINE_BOOL(weak_embedded_maps_in_optimized_code, true,
509             "make maps embedded in optimized code weak")
510 DEFINE_BOOL(weak_embedded_objects_in_optimized_code, true,
511             "make objects embedded in optimized code weak")
512 DEFINE_BOOL(flush_code, true,
513             "flush code that we expect not to use again (during full gc)")
514 DEFINE_BOOL(flush_code_incrementally, true,
515             "flush code that we expect not to use again (incrementally)")
516 DEFINE_BOOL(trace_code_flushing, false, "trace code flushing progress")
517 DEFINE_BOOL(age_code, true,
518             "track un-executed functions to age code and flush only "
519             "old code (required for code flushing)")
520 DEFINE_BOOL(incremental_marking, true, "use incremental marking")
521 DEFINE_BOOL(incremental_marking_steps, true, "do incremental marking steps")
522 DEFINE_BOOL(trace_incremental_marking, false,
523             "trace progress of the incremental marking")
524 DEFINE_BOOL(track_gc_object_stats, false,
525             "track object counts and memory usage")
526 DEFINE_BOOL(always_precise_sweeping, true, "always sweep precisely")
527 DEFINE_BOOL(parallel_sweeping, false, "enable parallel sweeping")
528 DEFINE_BOOL(concurrent_sweeping, true, "enable concurrent sweeping")
529 DEFINE_INT(sweeper_threads, 0,
530            "number of parallel and concurrent sweeping threads")
531 DEFINE_BOOL(job_based_sweeping, false, "enable job based sweeping")
532 #ifdef VERIFY_HEAP
533 DEFINE_BOOL(verify_heap, false, "verify heap pointers before and after GC")
534 #endif
535
536
537 // heap-snapshot-generator.cc
538 DEFINE_BOOL(heap_profiler_trace_objects, false,
539             "Dump heap object allocations/movements/size_updates")
540
541
542 // v8.cc
543 DEFINE_BOOL(use_idle_notification, true,
544             "Use idle notification to reduce memory footprint.")
545 // ic.cc
546 DEFINE_BOOL(use_ic, true, "use inline caching")
547 DEFINE_BOOL(trace_ic, false, "trace inline cache state transitions")
548
549 // macro-assembler-ia32.cc
550 DEFINE_BOOL(native_code_counters, false,
551             "generate extra code for manipulating stats counters")
552
553 // mark-compact.cc
554 DEFINE_BOOL(always_compact, false, "Perform compaction on every full GC")
555 DEFINE_BOOL(never_compact, false,
556             "Never perform compaction on full GC - testing only")
557 DEFINE_BOOL(compact_code_space, true,
558             "Compact code space on full non-incremental collections")
559 DEFINE_BOOL(incremental_code_compaction, true,
560             "Compact code space on full incremental collections")
561 DEFINE_BOOL(cleanup_code_caches_at_gc, true,
562             "Flush inline caches prior to mark compact collection and "
563             "flush code caches in maps during mark compact cycle.")
564 DEFINE_BOOL(use_marking_progress_bar, true,
565             "Use a progress bar to scan large objects in increments when "
566             "incremental marking is active.")
567 DEFINE_BOOL(zap_code_space, true,
568             "Zap free memory in code space with 0xCC while sweeping.")
569 DEFINE_INT(random_seed, 0,
570            "Default seed for initializing random generator "
571            "(0, the default, means to use system random).")
572
573 // objects.cc
574 DEFINE_BOOL(use_verbose_printer, true, "allows verbose printing")
575
576 // parser.cc
577 DEFINE_BOOL(allow_natives_syntax, false, "allow natives syntax")
578 DEFINE_BOOL(trace_parse, false, "trace parsing and preparsing")
579
580 // simulator-arm.cc, simulator-arm64.cc and simulator-mips.cc
581 DEFINE_BOOL(trace_sim, false, "Trace simulator execution")
582 DEFINE_BOOL(debug_sim, false, "Enable debugging the simulator")
583 DEFINE_BOOL(check_icache, false,
584             "Check icache flushes in ARM and MIPS simulator")
585 DEFINE_INT(stop_sim_at, 0, "Simulator stop after x number of instructions")
586 #if defined(V8_TARGET_ARCH_ARM64) || defined(V8_TARGET_ARCH_MIPS64)
587 DEFINE_INT(sim_stack_alignment, 16,
588            "Stack alignment in bytes in simulator. This must be a power of two "
589            "and it must be at least 16. 16 is default.")
590 #else
591 DEFINE_INT(sim_stack_alignment, 8,
592            "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
593 #endif
594 DEFINE_INT(sim_stack_size, 2 * MB / KB,
595            "Stack size of the ARM64 and MIPS64 simulator "
596            "in kBytes (default is 2 MB)")
597 DEFINE_BOOL(log_regs_modified, true,
598             "When logging register values, only print modified registers.")
599 DEFINE_BOOL(log_colour, true, "When logging, try to use coloured output.")
600 DEFINE_BOOL(ignore_asm_unimplemented_break, false,
601             "Don't break for ASM_UNIMPLEMENTED_BREAK macros.")
602 DEFINE_BOOL(trace_sim_messages, false,
603             "Trace simulator debug messages. Implied by --trace-sim.")
604
605 // isolate.cc
606 DEFINE_BOOL(stack_trace_on_illegal, false,
607             "print stack trace when an illegal exception is thrown")
608 DEFINE_BOOL(abort_on_uncaught_exception, false,
609             "abort program (dump core) when an uncaught exception is thrown")
610 DEFINE_BOOL(randomize_hashes, true,
611             "randomize hashes to avoid predictable hash collisions "
612             "(with snapshots this option cannot override the baked-in seed)")
613 DEFINE_INT(hash_seed, 0,
614            "Fixed seed to use to hash property keys (0 means random)"
615            "(with snapshots this option cannot override the baked-in seed)")
616
617 // snapshot-common.cc
618 DEFINE_BOOL(profile_deserialization, false,
619             "Print the time it takes to deserialize the snapshot.")
620
621 // Regexp
622 DEFINE_BOOL(regexp_optimization, true, "generate optimized regexp code")
623
624 // Testing flags test/cctest/test-{flags,api,serialization}.cc
625 DEFINE_BOOL(testing_bool_flag, true, "testing_bool_flag")
626 DEFINE_MAYBE_BOOL(testing_maybe_bool_flag, "testing_maybe_bool_flag")
627 DEFINE_INT(testing_int_flag, 13, "testing_int_flag")
628 DEFINE_FLOAT(testing_float_flag, 2.5, "float-flag")
629 DEFINE_STRING(testing_string_flag, "Hello, world!", "string-flag")
630 DEFINE_INT(testing_prng_seed, 42, "Seed used for threading test randomness")
631 #ifdef _WIN32
632 DEFINE_STRING(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
633               "file in which to testing_serialize heap")
634 #else
635 DEFINE_STRING(testing_serialization_file, "/tmp/serdes",
636               "file in which to serialize heap")
637 #endif
638
639 // mksnapshot.cc
640 DEFINE_STRING(extra_code, NULL,
641               "A filename with extra code to be included in"
642               " the snapshot (mksnapshot only)")
643 DEFINE_STRING(raw_file, NULL,
644               "A file to write the raw snapshot bytes to. "
645               "(mksnapshot only)")
646 DEFINE_STRING(raw_context_file, NULL,
647               "A file to write the raw context "
648               "snapshot bytes to. (mksnapshot only)")
649 DEFINE_STRING(startup_blob, NULL,
650               "Write V8 startup blob file. "
651               "(mksnapshot only)")
652
653 // code-stubs-hydrogen.cc
654 DEFINE_BOOL(profile_hydrogen_code_stub_compilation, false,
655             "Print the time it takes to lazily compile hydrogen code stubs.")
656
657 DEFINE_BOOL(predictable, false, "enable predictable mode")
658 DEFINE_NEG_IMPLICATION(predictable, concurrent_recompilation)
659 DEFINE_NEG_IMPLICATION(predictable, concurrent_osr)
660 DEFINE_NEG_IMPLICATION(predictable, concurrent_sweeping)
661 DEFINE_NEG_IMPLICATION(predictable, parallel_sweeping)
662
663
664 //
665 // Dev shell flags
666 //
667
668 DEFINE_BOOL(help, false, "Print usage message, including flags, on console")
669 DEFINE_BOOL(dump_counters, false, "Dump counters on exit")
670
671 DEFINE_BOOL(debugger, false, "Enable JavaScript debugger")
672
673 DEFINE_STRING(map_counters, "", "Map counters to a file")
674 DEFINE_ARGS(js_arguments,
675             "Pass all remaining arguments to the script. Alias for \"--\".")
676
677 //
678 // GDB JIT integration flags.
679 //
680
681 DEFINE_BOOL(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
682 DEFINE_BOOL(gdbjit_full, false, "enable GDBJIT interface for all code objects")
683 DEFINE_BOOL(gdbjit_dump, false, "dump elf objects with debug info to disk")
684 DEFINE_STRING(gdbjit_dump_filter, "",
685               "dump only objects containing this substring")
686
687 // mark-compact.cc
688 DEFINE_BOOL(force_marking_deque_overflows, false,
689             "force overflows of marking deque by reducing it's size "
690             "to 64 words")
691
692 DEFINE_BOOL(stress_compaction, false,
693             "stress the GC compactor to flush out bugs (implies "
694             "--force_marking_deque_overflows)")
695
696 //
697 // Debug only flags
698 //
699 #undef FLAG
700 #ifdef DEBUG
701 #define FLAG FLAG_FULL
702 #else
703 #define FLAG FLAG_READONLY
704 #endif
705
706 // checks.cc
707 #ifdef ENABLE_SLOW_DCHECKS
708 DEFINE_BOOL(enable_slow_asserts, false,
709             "enable asserts that are slow to execute")
710 #endif
711
712 // codegen-ia32.cc / codegen-arm.cc / macro-assembler-*.cc
713 DEFINE_BOOL(print_source, false, "pretty print source code")
714 DEFINE_BOOL(print_builtin_source, false,
715             "pretty print source code for builtins")
716 DEFINE_BOOL(print_ast, false, "print source AST")
717 DEFINE_BOOL(print_builtin_ast, false, "print source AST for builtins")
718 DEFINE_STRING(stop_at, "", "function name where to insert a breakpoint")
719 DEFINE_BOOL(trap_on_abort, false, "replace aborts by breakpoints")
720
721 // compiler.cc
722 DEFINE_BOOL(print_builtin_scopes, false, "print scopes for builtins")
723 DEFINE_BOOL(print_scopes, false, "print scopes")
724
725 // contexts.cc
726 DEFINE_BOOL(trace_contexts, false, "trace contexts operations")
727
728 // heap.cc
729 DEFINE_BOOL(gc_verbose, false, "print stuff during garbage collection")
730 DEFINE_BOOL(heap_stats, false, "report heap statistics before and after GC")
731 DEFINE_BOOL(code_stats, false, "report code statistics after GC")
732 DEFINE_BOOL(verify_native_context_separation, false,
733             "verify that code holds on to at most one native context after GC")
734 DEFINE_BOOL(print_handles, false, "report handles after GC")
735 DEFINE_BOOL(print_global_handles, false, "report global handles after GC")
736
737 // TurboFan debug-only flags.
738 DEFINE_BOOL(print_turbo_replay, false,
739             "print C++ code to recreate TurboFan graphs")
740
741 // interface.cc
742 DEFINE_BOOL(print_interfaces, false, "print interfaces")
743 DEFINE_BOOL(print_interface_details, false, "print interface inference details")
744 DEFINE_INT(print_interface_depth, 5, "depth for printing interfaces")
745
746 // objects.cc
747 DEFINE_BOOL(trace_normalization, false,
748             "prints when objects are turned into dictionaries.")
749
750 // runtime.cc
751 DEFINE_BOOL(trace_lazy, false, "trace lazy compilation")
752
753 // spaces.cc
754 DEFINE_BOOL(collect_heap_spill_statistics, false,
755             "report heap spill statistics along with heap_stats "
756             "(requires heap_stats)")
757
758 DEFINE_BOOL(trace_isolates, false, "trace isolate state changes")
759
760 // Regexp
761 DEFINE_BOOL(regexp_possessive_quantifier, false,
762             "enable possessive quantifier syntax for testing")
763 DEFINE_BOOL(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
764 DEFINE_BOOL(trace_regexp_assembler, false,
765             "trace regexp macro assembler calls.")
766
767 //
768 // Logging and profiling flags
769 //
770 #undef FLAG
771 #define FLAG FLAG_FULL
772
773 // log.cc
774 DEFINE_BOOL(log, false,
775             "Minimal logging (no API, code, GC, suspect, or handles samples).")
776 DEFINE_BOOL(log_all, false, "Log all events to the log file.")
777 DEFINE_BOOL(log_api, false, "Log API events to the log file.")
778 DEFINE_BOOL(log_code, false,
779             "Log code events to the log file without profiling.")
780 DEFINE_BOOL(log_gc, false,
781             "Log heap samples on garbage collection for the hp2ps tool.")
782 DEFINE_BOOL(log_handles, false, "Log global handle events.")
783 DEFINE_BOOL(log_snapshot_positions, false,
784             "log positions of (de)serialized objects in the snapshot.")
785 DEFINE_BOOL(log_suspect, false, "Log suspect operations.")
786 DEFINE_BOOL(prof, false,
787             "Log statistical profiling information (implies --log-code).")
788 DEFINE_BOOL(prof_browser_mode, true,
789             "Used with --prof, turns on browser-compatible mode for profiling.")
790 DEFINE_BOOL(log_regexp, false, "Log regular expression execution.")
791 DEFINE_STRING(logfile, "v8.log", "Specify the name of the log file.")
792 DEFINE_BOOL(logfile_per_isolate, true, "Separate log files for each isolate.")
793 DEFINE_BOOL(ll_prof, false, "Enable low-level linux profiler.")
794 DEFINE_BOOL(perf_basic_prof, false,
795             "Enable perf linux profiler (basic support).")
796 DEFINE_NEG_IMPLICATION(perf_basic_prof, compact_code_space)
797 DEFINE_BOOL(perf_jit_prof, false,
798             "Enable perf linux profiler (experimental annotate support).")
799 DEFINE_NEG_IMPLICATION(perf_jit_prof, compact_code_space)
800 DEFINE_STRING(gc_fake_mmap, "/tmp/__v8_gc__",
801               "Specify the name of the file for fake gc mmap used in ll_prof")
802 DEFINE_BOOL(log_internal_timer_events, false, "Time internal events.")
803 DEFINE_BOOL(log_timer_events, false,
804             "Time events including external callbacks.")
805 DEFINE_IMPLICATION(log_timer_events, log_internal_timer_events)
806 DEFINE_IMPLICATION(log_internal_timer_events, prof)
807 DEFINE_BOOL(log_instruction_stats, false, "Log AArch64 instruction statistics.")
808 DEFINE_STRING(log_instruction_file, "arm64_inst.csv",
809               "AArch64 instruction statistics log file.")
810 DEFINE_INT(log_instruction_period, 1 << 22,
811            "AArch64 instruction statistics logging period.")
812
813 DEFINE_BOOL(redirect_code_traces, false,
814             "output deopt information and disassembly into file "
815             "code-<pid>-<isolate id>.asm")
816 DEFINE_STRING(redirect_code_traces_to, NULL,
817               "output deopt information and disassembly into the given file")
818
819 DEFINE_BOOL(hydrogen_track_positions, false,
820             "track source code positions when building IR")
821
822 //
823 // Disassembler only flags
824 //
825 #undef FLAG
826 #ifdef ENABLE_DISASSEMBLER
827 #define FLAG FLAG_FULL
828 #else
829 #define FLAG FLAG_READONLY
830 #endif
831
832 // elements.cc
833 DEFINE_BOOL(trace_elements_transitions, false, "trace elements transitions")
834
835 DEFINE_BOOL(trace_creation_allocation_sites, false,
836             "trace the creation of allocation sites")
837
838 // code-stubs.cc
839 DEFINE_BOOL(print_code_stubs, false, "print code stubs")
840 DEFINE_BOOL(test_secondary_stub_cache, false,
841             "test secondary stub cache by disabling the primary one")
842
843 DEFINE_BOOL(test_primary_stub_cache, false,
844             "test primary stub cache by disabling the secondary one")
845
846
847 // codegen-ia32.cc / codegen-arm.cc
848 DEFINE_BOOL(print_code, false, "print generated code")
849 DEFINE_BOOL(print_opt_code, false, "print optimized code")
850 DEFINE_BOOL(print_unopt_code, false,
851             "print unoptimized code before "
852             "printing optimized code based on it")
853 DEFINE_BOOL(print_code_verbose, false, "print more information for code")
854 DEFINE_BOOL(print_builtin_code, false, "print generated code for builtins")
855
856 #ifdef ENABLE_DISASSEMBLER
857 DEFINE_BOOL(sodium, false,
858             "print generated code output suitable for use with "
859             "the Sodium code viewer")
860
861 DEFINE_IMPLICATION(sodium, print_code_stubs)
862 DEFINE_IMPLICATION(sodium, print_code)
863 DEFINE_IMPLICATION(sodium, print_opt_code)
864 DEFINE_IMPLICATION(sodium, hydrogen_track_positions)
865 DEFINE_IMPLICATION(sodium, code_comments)
866
867 DEFINE_BOOL(print_all_code, false, "enable all flags related to printing code")
868 DEFINE_IMPLICATION(print_all_code, print_code)
869 DEFINE_IMPLICATION(print_all_code, print_opt_code)
870 DEFINE_IMPLICATION(print_all_code, print_unopt_code)
871 DEFINE_IMPLICATION(print_all_code, print_code_verbose)
872 DEFINE_IMPLICATION(print_all_code, print_builtin_code)
873 DEFINE_IMPLICATION(print_all_code, print_code_stubs)
874 DEFINE_IMPLICATION(print_all_code, code_comments)
875 #ifdef DEBUG
876 DEFINE_IMPLICATION(print_all_code, trace_codegen)
877 #endif
878 #endif
879
880
881 //
882 // VERIFY_PREDICTABLE related flags
883 //
884 #undef FLAG
885
886 #ifdef VERIFY_PREDICTABLE
887 #define FLAG FLAG_FULL
888 #else
889 #define FLAG FLAG_READONLY
890 #endif
891
892 DEFINE_BOOL(verify_predictable, false,
893             "this mode is used for checking that V8 behaves predictably")
894 DEFINE_INT(dump_allocations_digest_at_alloc, 0,
895            "dump allocations digest each n-th allocation")
896
897
898 //
899 // Read-only flags
900 //
901 #undef FLAG
902 #define FLAG FLAG_READONLY
903
904 // assembler-arm.h
905 DEFINE_BOOL(enable_ool_constant_pool, V8_OOL_CONSTANT_POOL,
906             "enable use of out-of-line constant pools (ARM only)")
907
908 // Cleanup...
909 #undef FLAG_FULL
910 #undef FLAG_READONLY
911 #undef FLAG
912 #undef FLAG_ALIAS
913
914 #undef DEFINE_BOOL
915 #undef DEFINE_MAYBE_BOOL
916 #undef DEFINE_INT
917 #undef DEFINE_STRING
918 #undef DEFINE_FLOAT
919 #undef DEFINE_ARGS
920 #undef DEFINE_IMPLICATION
921 #undef DEFINE_NEG_IMPLICATION
922 #undef DEFINE_ALIAS_BOOL
923 #undef DEFINE_ALIAS_INT
924 #undef DEFINE_ALIAS_STRING
925 #undef DEFINE_ALIAS_FLOAT
926 #undef DEFINE_ALIAS_ARGS
927
928 #undef FLAG_MODE_DECLARE
929 #undef FLAG_MODE_DEFINE
930 #undef FLAG_MODE_DEFINE_DEFAULTS
931 #undef FLAG_MODE_META
932 #undef FLAG_MODE_DEFINE_IMPLICATIONS
933
934 #undef COMMA