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