Merge remote-tracking branch 'ry/v0.8' into master
[platform/upstream/nodejs.git] / deps / v8 / src / flag-definitions.h
1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 //     * Redistributions of source code must retain the above copyright
7 //       notice, this list of conditions and the following disclaimer.
8 //     * Redistributions in binary form must reproduce the above
9 //       copyright notice, this list of conditions and the following
10 //       disclaimer in the documentation and/or other materials provided
11 //       with the distribution.
12 //     * Neither the name of Google Inc. nor the names of its
13 //       contributors may be used to endorse or promote products derived
14 //       from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 // This file defines all of the flags.  It is separated into different section,
29 // for Debug, Release, Logging and Profiling, etc.  To add a new flag, find the
30 // correct section, and use one of the DEFINE_ macros, without a trailing ';'.
31 //
32 // This include does not have a guard, because it is a template-style include,
33 // which can be included multiple times in different modes.  It expects to have
34 // a mode defined before it's included.  The modes are FLAG_MODE_... below:
35
36 // We want to declare the names of the variables for the header file.  Normally
37 // this will just be an extern declaration, but for a readonly flag we let the
38 // compiler make better optimizations by giving it the value.
39 #if defined(FLAG_MODE_DECLARE)
40 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
41   extern ctype FLAG_##nam;
42 #define FLAG_READONLY(ftype, ctype, nam, def, cmt) \
43   static ctype const FLAG_##nam = def;
44 #define DEFINE_implication(whenflag, thenflag)
45
46 // We want to supply the actual storage and value for the flag variable in the
47 // .cc file.  We only do this for writable flags.
48 #elif defined(FLAG_MODE_DEFINE)
49 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
50   ctype FLAG_##nam = def;
51 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
52 #define DEFINE_implication(whenflag, thenflag)
53
54 // We need to define all of our default values so that the Flag structure can
55 // access them by pointer.  These are just used internally inside of one .cc,
56 // for MODE_META, so there is no impact on the flags interface.
57 #elif defined(FLAG_MODE_DEFINE_DEFAULTS)
58 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
59   static ctype const FLAGDEFAULT_##nam = def;
60 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
61 #define DEFINE_implication(whenflag, thenflag)
62
63 // We want to write entries into our meta data table, for internal parsing and
64 // printing / etc in the flag parser code.  We only do this for writable flags.
65 #elif defined(FLAG_MODE_META)
66 #define FLAG_FULL(ftype, ctype, nam, def, cmt) \
67   { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false },
68 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
69 #define DEFINE_implication(whenflag, thenflag)
70
71 // We produce the code to set flags when it is implied by another flag.
72 #elif defined(FLAG_MODE_DEFINE_IMPLICATIONS)
73 #define FLAG_FULL(ftype, ctype, nam, def, cmt)
74 #define FLAG_READONLY(ftype, ctype, nam, def, cmt)
75 #define DEFINE_implication(whenflag, thenflag) \
76   if (FLAG_##whenflag) FLAG_##thenflag = true;
77
78 #else
79 #error No mode supplied when including flags.defs
80 #endif
81
82 #ifdef FLAG_MODE_DECLARE
83 // Structure used to hold a collection of arguments to the JavaScript code.
84 #define JSARGUMENTS_INIT {{}}
85 struct JSArguments {
86 public:
87   inline int argc() const {
88     return static_cast<int>(storage_[0]);
89   }
90   inline const char** argv() const {
91     return reinterpret_cast<const char**>(storage_[1]);
92   }
93   inline const char*& operator[] (int idx) const {
94     return argv()[idx];
95   }
96   inline JSArguments& operator=(JSArguments args) {
97     set_argc(args.argc());
98     set_argv(args.argv());
99     return *this;
100   }
101   static JSArguments Create(int argc, const char** argv) {
102     JSArguments args;
103     args.set_argc(argc);
104     args.set_argv(argv);
105     return args;
106   }
107 private:
108   void set_argc(int argc) {
109     storage_[0] = argc;
110   }
111   void set_argv(const char** argv) {
112     storage_[1] = reinterpret_cast<AtomicWord>(argv);
113   }
114 public:
115   // Contains argc and argv. Unfortunately we have to store these two fields
116   // into a single one to avoid making the initialization macro (which would be
117   // "{ 0, NULL }") contain a coma.
118   AtomicWord storage_[2];
119 };
120 #endif
121
122 #define DEFINE_bool(nam, def, cmt) FLAG(BOOL, bool, nam, def, cmt)
123 #define DEFINE_int(nam, def, cmt) FLAG(INT, int, nam, def, cmt)
124 #define DEFINE_float(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
125 #define DEFINE_string(nam, def, cmt) FLAG(STRING, const char*, nam, def, cmt)
126 #define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt)
127
128 //
129 // Flags in all modes.
130 //
131 #define FLAG FLAG_FULL
132
133 // Flags for language modes and experimental language features.
134 DEFINE_bool(use_strict, false, "enforce strict mode")
135 DEFINE_bool(es5_readonly, true,
136             "activate correct semantics for inheriting readonliness")
137 DEFINE_bool(es52_globals, true,
138             "activate new semantics for global var declarations")
139
140 DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof")
141 DEFINE_bool(harmony_scoping, false, "enable harmony block scoping")
142 DEFINE_bool(harmony_modules, false,
143             "enable harmony modules (implies block scoping)")
144 DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
145 DEFINE_bool(harmony_collections, false,
146             "enable harmony collections (sets, maps, and weak maps)")
147 DEFINE_bool(harmony_observation, false,
148             "enable harmony object observation (implies harmony collections")
149 DEFINE_bool(harmony, false, "enable all harmony features (except typeof)")
150 DEFINE_implication(harmony, harmony_scoping)
151 DEFINE_implication(harmony, harmony_modules)
152 DEFINE_implication(harmony, harmony_proxies)
153 DEFINE_implication(harmony, harmony_collections)
154 DEFINE_implication(harmony, harmony_observation)
155 DEFINE_implication(harmony_modules, harmony_scoping)
156 DEFINE_implication(harmony_observation, harmony_collections)
157
158 // Flags for experimental implementation features.
159 DEFINE_bool(packed_arrays, true, "optimizes arrays that have no holes")
160 DEFINE_bool(smi_only_arrays, true, "tracks arrays with only smi values")
161 DEFINE_bool(clever_optimizations,
162             true,
163             "Optimize object size, Array shift, DOM strings and string +")
164
165 // Flags for data representation optimizations
166 DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
167 DEFINE_bool(string_slices, true, "use string slices")
168
169 // Flags for Crankshaft.
170 DEFINE_bool(crankshaft, true, "use crankshaft")
171 DEFINE_string(hydrogen_filter, "", "optimization filter")
172 DEFINE_bool(use_range, true, "use hydrogen range analysis")
173 DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis")
174 DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
175 DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
176 DEFINE_bool(use_inlining, true, "use function inlining")
177 DEFINE_int(max_inlined_source_size, 600,
178            "maximum source size in bytes considered for a single inlining")
179 DEFINE_int(max_inlined_nodes, 196,
180            "maximum number of AST nodes considered for a single inlining")
181 DEFINE_int(max_inlined_nodes_cumulative, 196,
182            "maximum cumulative number of AST nodes considered for inlining")
183 DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
184 DEFINE_bool(fast_math, true, "faster (but maybe less accurate) math functions")
185 DEFINE_bool(collect_megamorphic_maps_from_stub_cache,
186             true,
187             "crankshaft harvests type feedback from stub cache")
188 DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen")
189 DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
190 DEFINE_string(trace_phase, "Z", "trace generated IR for specified phases")
191 DEFINE_bool(trace_inlining, false, "trace inlining decisions")
192 DEFINE_bool(trace_alloc, false, "trace register allocator")
193 DEFINE_bool(trace_all_uses, false, "trace all use positions")
194 DEFINE_bool(trace_range, false, "trace range analysis")
195 DEFINE_bool(trace_gvn, false, "trace global value numbering")
196 DEFINE_bool(trace_representation, false, "trace representation types")
197 DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
198 DEFINE_bool(stress_environments, false, "environment for every instruction")
199 DEFINE_int(deopt_every_n_times,
200            0,
201            "deoptimize every n times a deopt point is passed")
202 DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
203 DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
204 DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
205 DEFINE_bool(use_osr, true, "use on-stack replacement")
206 DEFINE_bool(array_bounds_checks_elimination, true,
207             "perform array bounds checks elimination")
208 DEFINE_bool(array_index_dehoisting, true,
209             "perform array index dehoisting")
210 DEFINE_bool(dead_code_elimination, true, "use dead code elimination")
211 DEFINE_bool(trace_dead_code_elimination, false, "trace dead code elimination")
212
213 DEFINE_bool(trace_osr, false, "trace on-stack replacement")
214 DEFINE_int(stress_runs, 0, "number of stress runs")
215 DEFINE_bool(optimize_closures, true, "optimize closures")
216 DEFINE_bool(lookup_sample_by_shared, true,
217             "when picking a function to optimize, watch for shared function "
218             "info, not JSFunction itself")
219 DEFINE_bool(cache_optimized_code, true,
220             "cache optimized code for closures")
221 DEFINE_bool(inline_construct, true, "inline constructor calls")
222 DEFINE_bool(inline_arguments, true, "inline functions with arguments object")
223 DEFINE_bool(inline_accessors, true, "inline JavaScript accessors")
224 DEFINE_int(loop_weight, 1, "loop weight for representation inference")
225
226 DEFINE_bool(optimize_for_in, true,
227             "optimize functions containing for-in loops")
228 DEFINE_bool(opt_safe_uint32_operations, true,
229             "allow uint32 values on optimize frames if they are used only in "
230             "safe operations")
231
232 DEFINE_bool(parallel_recompilation, false,
233             "optimizing hot functions asynchronously on a separate thread")
234 DEFINE_bool(trace_parallel_recompilation, false, "track parallel recompilation")
235 DEFINE_int(parallel_recompilation_queue_length, 2,
236            "the length of the parallel compilation queue")
237 DEFINE_bool(manual_parallel_recompilation, false,
238             "disable automatic optimization")
239 DEFINE_implication(manual_parallel_recompilation, parallel_recompilation)
240
241 // Experimental profiler changes.
242 DEFINE_bool(experimental_profiler, true, "enable all profiler experiments")
243 DEFINE_bool(watch_ic_patching, false, "profiler considers IC stability")
244 DEFINE_int(frame_count, 1, "number of stack frames inspected by the profiler")
245 DEFINE_bool(self_optimization, false,
246             "primitive functions trigger their own optimization")
247 DEFINE_bool(direct_self_opt, false,
248             "call recompile stub directly when self-optimizing")
249 DEFINE_bool(retry_self_opt, false, "re-try self-optimization if it failed")
250 DEFINE_bool(interrupt_at_exit, false,
251             "insert an interrupt check at function exit")
252 DEFINE_bool(weighted_back_edges, false,
253             "weight back edges by jump distance for interrupt triggering")
254            // 0x1700 fits in the immediate field of an ARM instruction.
255 DEFINE_int(interrupt_budget, 0x1700,
256            "execution budget before interrupt is triggered")
257 DEFINE_int(type_info_threshold, 15,
258            "percentage of ICs that must have type info to allow optimization")
259 DEFINE_int(self_opt_count, 130, "call count before self-optimization")
260
261 DEFINE_implication(experimental_profiler, watch_ic_patching)
262 DEFINE_implication(experimental_profiler, self_optimization)
263 // Not implying direct_self_opt here because it seems to be a bad idea.
264 DEFINE_implication(experimental_profiler, retry_self_opt)
265 DEFINE_implication(experimental_profiler, interrupt_at_exit)
266 DEFINE_implication(experimental_profiler, weighted_back_edges)
267
268 DEFINE_bool(trace_opt_verbose, false, "extra verbose compilation tracing")
269 DEFINE_implication(trace_opt_verbose, trace_opt)
270
271 // assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
272 DEFINE_bool(debug_code, false,
273             "generate extra code (assertions) for debugging")
274 DEFINE_bool(code_comments, false, "emit comments in code disassembly")
275 DEFINE_bool(enable_sse2, true,
276             "enable use of SSE2 instructions if available")
277 DEFINE_bool(enable_sse3, true,
278             "enable use of SSE3 instructions if available")
279 DEFINE_bool(enable_sse4_1, true,
280             "enable use of SSE4.1 instructions if available")
281 DEFINE_bool(enable_cmov, true,
282             "enable use of CMOV instruction if available")
283 DEFINE_bool(enable_rdtsc, true,
284             "enable use of RDTSC instruction if available")
285 DEFINE_bool(enable_sahf, true,
286             "enable use of SAHF instruction if available (X64 only)")
287 DEFINE_bool(enable_vfp3, true,
288             "enable use of VFP3 instructions if available - this implies "
289             "enabling ARMv7 and VFP2 instructions (ARM only)")
290 DEFINE_bool(enable_vfp2, true,
291             "enable use of VFP2 instructions if available")
292 DEFINE_bool(enable_armv7, true,
293             "enable use of ARMv7 instructions if available (ARM only)")
294 DEFINE_bool(enable_sudiv, true,
295             "enable use of SDIV and UDIV instructions if available (ARM only)")
296 DEFINE_bool(enable_movw_movt, false,
297             "enable loading 32-bit constant by means of movw/movt "
298             "instruction pairs (ARM only)")
299 DEFINE_bool(enable_unaligned_accesses, true,
300             "enable unaligned accesses for ARMv7 (ARM only)")
301 DEFINE_bool(enable_fpu, true,
302             "enable use of MIPS FPU instructions if available (MIPS only)")
303
304 // bootstrapper.cc
305 DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
306 DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
307 DEFINE_bool(expose_gc, false, "expose gc extension")
308 DEFINE_bool(expose_externalize_string, false,
309             "expose externalize string extension")
310 DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
311 DEFINE_bool(builtins_in_stack_traces, false,
312             "show built-in functions in stack traces")
313 DEFINE_bool(disable_native_files, false, "disable builtin natives files")
314
315 // builtins-ia32.cc
316 DEFINE_bool(inline_new, true, "use fast inline allocation")
317
318 // checks.cc
319 DEFINE_bool(stack_trace_on_abort, true,
320             "print a stack trace if an assertion failure occurs")
321
322 // codegen-ia32.cc / codegen-arm.cc
323 DEFINE_bool(trace, false, "trace function calls")
324 DEFINE_bool(mask_constants_with_cookie,
325             true,
326             "use random jit cookie to mask large constants")
327
328 // codegen.cc
329 DEFINE_bool(lazy, true, "use lazy compilation")
330 DEFINE_bool(trace_opt, false, "trace lazy optimization")
331 DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
332 DEFINE_bool(opt, true, "use adaptive optimizations")
333 DEFINE_bool(always_opt, false, "always try to optimize functions")
334 DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
335 DEFINE_bool(trace_deopt, false, "trace deoptimization")
336
337 // compiler.cc
338 DEFINE_int(min_preparse_length, 1024,
339            "minimum length for automatic enable preparsing")
340 DEFINE_bool(always_full_compiler, false,
341             "try to use the dedicated run-once backend for all code")
342 DEFINE_int(max_opt_count, 10,
343            "maximum number of optimization attempts before giving up.")
344
345 // compilation-cache.cc
346 DEFINE_bool(compilation_cache, true, "enable compilation cache")
347
348 DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
349
350 // debug.cc
351 DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
352 DEFINE_bool(debugger_auto_break, true,
353             "automatically set the debug break flag when debugger commands are "
354             "in the queue")
355 DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
356 DEFINE_bool(break_on_abort, true, "always cause a debug break before aborting")
357
358 // execution.cc
359 // Slightly less than 1MB on 64-bit, since Windows' default stack size for
360 // the main execution thread is 1MB for both 32 and 64-bit.
361 DEFINE_int(stack_size, kPointerSize * 123,
362            "default size of stack region v8 is allowed to use (in kBytes)")
363
364 // frames.cc
365 DEFINE_int(max_stack_trace_source_length, 300,
366            "maximum length of function source code printed in a stack trace.")
367
368 // full-codegen.cc
369 DEFINE_bool(always_inline_smi_code, false,
370             "always inline smi code in non-opt code")
371
372 // heap.cc
373 DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
374 DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
375 DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
376 DEFINE_bool(gc_global, false, "always perform global GCs")
377 DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
378 DEFINE_bool(trace_gc, false,
379             "print one trace line following each garbage collection")
380 DEFINE_bool(trace_gc_nvp, false,
381             "print one detailed trace line in name=value format "
382             "after each garbage collection")
383 DEFINE_bool(trace_gc_ignore_scavenger, false,
384             "do not print trace line after scavenger collection")
385 DEFINE_bool(print_cumulative_gc_stat, false,
386             "print cumulative GC statistics in name=value format on exit")
387 DEFINE_bool(trace_gc_verbose, false,
388             "print more details following each garbage collection")
389 DEFINE_bool(trace_fragmentation, false,
390             "report fragmentation for old pointer and data pages")
391 DEFINE_bool(trace_external_memory, false,
392             "print amount of external allocated memory after each time "
393             "it is adjusted.")
394 DEFINE_bool(collect_maps, true,
395             "garbage collect maps from which no objects can be reached")
396 DEFINE_bool(flush_code, true,
397             "flush code that we expect not to use again (during full gc)")
398 DEFINE_bool(flush_code_incrementally, true,
399             "flush code that we expect not to use again (incrementally)")
400 DEFINE_bool(age_code, true,
401             "track un-executed functions to age code and flush only "
402             "old code")
403 DEFINE_bool(incremental_marking, true, "use incremental marking")
404 DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
405 DEFINE_bool(trace_incremental_marking, false,
406             "trace progress of the incremental marking")
407 DEFINE_bool(track_gc_object_stats, false,
408             "track object counts and memory usage")
409 #ifdef VERIFY_HEAP
410 DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
411 #endif
412
413 // v8.cc
414 DEFINE_bool(use_idle_notification, true,
415             "Use idle notification to reduce memory footprint.")
416 // ic.cc
417 DEFINE_bool(use_ic, true, "use inline caching")
418
419 #ifdef LIVE_OBJECT_LIST
420 // liveobjectlist.cc
421 DEFINE_string(lol_workdir, NULL, "path for lol temp files")
422 DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
423 #endif
424
425 // macro-assembler-ia32.cc
426 DEFINE_bool(native_code_counters, false,
427             "generate extra code for manipulating stats counters")
428
429 // mark-compact.cc
430 DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
431 DEFINE_bool(lazy_sweeping, true,
432             "Use lazy sweeping for old pointer and data spaces")
433 DEFINE_bool(never_compact, false,
434             "Never perform compaction on full GC - testing only")
435 DEFINE_bool(compact_code_space, true,
436             "Compact code space on full non-incremental collections")
437 DEFINE_bool(incremental_code_compaction, true,
438             "Compact code space on full incremental collections")
439 DEFINE_bool(cleanup_code_caches_at_gc, true,
440             "Flush inline caches prior to mark compact collection and "
441             "flush code caches in maps during mark compact cycle.")
442 DEFINE_bool(use_marking_progress_bar, true,
443             "Use a progress bar to scan large objects in increments when "
444             "incremental marking is active.")
445 DEFINE_int(random_seed, 0,
446            "Default seed for initializing random generator "
447            "(0, the default, means to use system random).")
448
449 // objects.cc
450 DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
451
452 // parser.cc
453 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
454 DEFINE_bool(trace_parse, false, "trace parsing and preparsing")
455
456 // simulator-arm.cc and simulator-mips.cc
457 DEFINE_bool(trace_sim, false, "Trace simulator execution")
458 DEFINE_bool(check_icache, false,
459             "Check icache flushes in ARM and MIPS simulator")
460 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
461 DEFINE_int(sim_stack_alignment, 8,
462            "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
463
464 // isolate.cc
465 DEFINE_bool(trace_exception, false,
466             "print stack trace when throwing exceptions")
467 DEFINE_bool(preallocate_message_memory, false,
468             "preallocate some memory to build stack traces.")
469 DEFINE_bool(randomize_hashes,
470             true,
471             "randomize hashes to avoid predictable hash collisions "
472             "(with snapshots this option cannot override the baked-in seed)")
473 DEFINE_int(hash_seed,
474            0,
475            "Fixed seed to use to hash property keys (0 means random)"
476            "(with snapshots this option cannot override the baked-in seed)")
477
478 // v8.cc
479 DEFINE_bool(preemption, false,
480             "activate a 100ms timer that switches between V8 threads")
481
482 // Regexp
483 DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
484
485 // Testing flags test/cctest/test-{flags,api,serialization}.cc
486 DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
487 DEFINE_int(testing_int_flag, 13, "testing_int_flag")
488 DEFINE_float(testing_float_flag, 2.5, "float-flag")
489 DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
490 DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
491 #ifdef WIN32
492 DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
493               "file in which to testing_serialize heap")
494 #else
495 DEFINE_string(testing_serialization_file, "/tmp/serdes",
496               "file in which to serialize heap")
497 #endif
498
499 // mksnapshot.cc
500 DEFINE_string(extra_code, NULL, "A filename with extra code to be included in"
501                   " the snapshot (mksnapshot only)")
502
503 //
504 // Dev shell flags
505 //
506
507 DEFINE_bool(help, false, "Print usage message, including flags, on console")
508 DEFINE_bool(dump_counters, false, "Dump counters on exit")
509
510 #ifdef ENABLE_DEBUGGER_SUPPORT
511 DEFINE_bool(debugger, false, "Enable JavaScript debugger")
512 DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
513                                     "debugger agent in another process")
514 DEFINE_bool(debugger_agent, false, "Enable debugger agent")
515 DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
516 #endif  // ENABLE_DEBUGGER_SUPPORT
517
518 DEFINE_string(map_counters, "", "Map counters to a file")
519 DEFINE_args(js_arguments, JSARGUMENTS_INIT,
520             "Pass all remaining arguments to the script. Alias for \"--\".")
521
522 #if defined(WEBOS__)
523 DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
524 DEFINE_bool(debug_script_collected_events, false,
525             "Enable debugger script collected events")
526 #else
527 DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
528 DEFINE_bool(debug_script_collected_events, true,
529             "Enable debugger script collected events")
530 #endif
531
532
533 //
534 // GDB JIT integration flags.
535 //
536
537 DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
538 DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
539 DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk")
540 DEFINE_string(gdbjit_dump_filter, "",
541               "dump only objects containing this substring")
542
543 // mark-compact.cc
544 DEFINE_bool(force_marking_deque_overflows, false,
545             "force overflows of marking deque by reducing it's size "
546             "to 64 words")
547
548 DEFINE_bool(stress_compaction, false,
549             "stress the GC compactor to flush out bugs (implies "
550             "--force_marking_deque_overflows)")
551
552 //
553 // Debug only flags
554 //
555 #undef FLAG
556 #ifdef DEBUG
557 #define FLAG FLAG_FULL
558 #else
559 #define FLAG FLAG_READONLY
560 #endif
561
562 // checks.cc
563 DEFINE_bool(enable_slow_asserts, false,
564             "enable asserts that are slow to execute")
565
566 // codegen-ia32.cc / codegen-arm.cc
567 DEFINE_bool(trace_codegen, false,
568             "print name of functions for which code is generated")
569 DEFINE_bool(print_source, false, "pretty print source code")
570 DEFINE_bool(print_builtin_source, false,
571             "pretty print source code for builtins")
572 DEFINE_bool(print_ast, false, "print source AST")
573 DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
574 DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
575
576 // compiler.cc
577 DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
578 DEFINE_bool(print_scopes, false, "print scopes")
579
580 // contexts.cc
581 DEFINE_bool(trace_contexts, false, "trace contexts operations")
582
583 // heap.cc
584 DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
585 DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
586 DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
587 DEFINE_bool(code_stats, false, "report code statistics after GC")
588 DEFINE_bool(verify_native_context_separation, false,
589             "verify that code holds on to at most one native context after GC")
590 DEFINE_bool(print_handles, false, "report handles after GC")
591 DEFINE_bool(print_global_handles, false, "report global handles after GC")
592
593 // ic.cc
594 DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
595
596 // interface.cc
597 DEFINE_bool(print_interfaces, false, "print interfaces")
598 DEFINE_bool(print_interface_details, false, "print interface inference details")
599 DEFINE_int(print_interface_depth, 5, "depth for printing interfaces")
600
601 // objects.cc
602 DEFINE_bool(trace_normalization,
603             false,
604             "prints when objects are turned into dictionaries.")
605
606 // runtime.cc
607 DEFINE_bool(trace_lazy, false, "trace lazy compilation")
608
609 // spaces.cc
610 DEFINE_bool(collect_heap_spill_statistics, false,
611             "report heap spill statistics along with heap_stats "
612             "(requires heap_stats)")
613
614 DEFINE_bool(trace_isolates, false, "trace isolate state changes")
615
616 // VM state
617 DEFINE_bool(log_state_changes, false, "Log state changes.")
618
619 // Regexp
620 DEFINE_bool(regexp_possessive_quantifier,
621             false,
622             "enable possessive quantifier syntax for testing")
623 DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
624 DEFINE_bool(trace_regexp_assembler,
625             false,
626             "trace regexp macro assembler calls.")
627
628 //
629 // Logging and profiling flags
630 //
631 #undef FLAG
632 #define FLAG FLAG_FULL
633
634 // log.cc
635 DEFINE_bool(log, false,
636             "Minimal logging (no API, code, GC, suspect, or handles samples).")
637 DEFINE_bool(log_all, false, "Log all events to the log file.")
638 DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
639 DEFINE_bool(log_api, false, "Log API events to the log file.")
640 DEFINE_bool(log_code, false,
641             "Log code events to the log file without profiling.")
642 DEFINE_bool(log_gc, false,
643             "Log heap samples on garbage collection for the hp2ps tool.")
644 DEFINE_bool(log_handles, false, "Log global handle events.")
645 DEFINE_bool(log_snapshot_positions, false,
646             "log positions of (de)serialized objects in the snapshot.")
647 DEFINE_bool(log_suspect, false, "Log suspect operations.")
648 DEFINE_bool(prof, false,
649             "Log statistical profiling information (implies --log-code).")
650 DEFINE_bool(prof_auto, true,
651             "Used with --prof, starts profiling automatically")
652 DEFINE_bool(prof_lazy, false,
653             "Used with --prof, only does sampling and logging"
654             " when profiler is active (implies --noprof_auto).")
655 DEFINE_bool(prof_browser_mode, true,
656             "Used with --prof, turns on browser-compatible mode for profiling.")
657 DEFINE_bool(log_regexp, false, "Log regular expression execution.")
658 DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
659 DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
660 DEFINE_string(gc_fake_mmap, "/tmp/__v8_gc__",
661               "Specify the name of the file for fake gc mmap used in ll_prof")
662 DEFINE_bool(log_internal_timer_events, false, "Time internal events.")
663 DEFINE_bool(log_timer_events, false,
664             "Time events including external callbacks.")
665 DEFINE_implication(log_timer_events, log_internal_timer_events)
666
667 //
668 // Disassembler only flags
669 //
670 #undef FLAG
671 #ifdef ENABLE_DISASSEMBLER
672 #define FLAG FLAG_FULL
673 #else
674 #define FLAG FLAG_READONLY
675 #endif
676
677 // elements.cc
678 DEFINE_bool(trace_elements_transitions, false, "trace elements transitions")
679
680 // code-stubs.cc
681 DEFINE_bool(print_code_stubs, false, "print code stubs")
682 DEFINE_bool(test_secondary_stub_cache,
683             false,
684             "test secondary stub cache by disabling the primary one")
685
686 DEFINE_bool(test_primary_stub_cache,
687             false,
688             "test primary stub cache by disabling the secondary one")
689
690 // codegen-ia32.cc / codegen-arm.cc
691 DEFINE_bool(print_code, false, "print generated code")
692 DEFINE_bool(print_opt_code, false, "print optimized code")
693 DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
694             "printing optimized code based on it")
695 DEFINE_bool(print_code_verbose, false, "print more information for code")
696 DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
697
698 #ifdef ENABLE_DISASSEMBLER
699 DEFINE_bool(print_all_code, false, "enable all flags related to printing code")
700 DEFINE_implication(print_all_code, print_code)
701 DEFINE_implication(print_all_code, print_opt_code)
702 DEFINE_implication(print_all_code, print_unopt_code)
703 DEFINE_implication(print_all_code, print_code_verbose)
704 DEFINE_implication(print_all_code, print_builtin_code)
705 DEFINE_implication(print_all_code, print_code_stubs)
706 DEFINE_implication(print_all_code, code_comments)
707 #ifdef DEBUG
708 DEFINE_implication(print_all_code, trace_codegen)
709 #endif
710 #endif
711
712 // Cleanup...
713 #undef FLAG_FULL
714 #undef FLAG_READONLY
715 #undef FLAG
716
717 #undef DEFINE_bool
718 #undef DEFINE_int
719 #undef DEFINE_string
720 #undef DEFINE_implication
721
722 #undef FLAG_MODE_DECLARE
723 #undef FLAG_MODE_DEFINE
724 #undef FLAG_MODE_DEFINE_DEFAULTS
725 #undef FLAG_MODE_META
726 #undef FLAG_MODE_DEFINE_IMPLICATIONS