blob: fb892d6248496b80aea83cc91b7d76e78a703f7b [file] [log] [blame]
Ben Murdochb0fe1622011-05-05 13:52:32 +01001// Copyright 2010 the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +00002// 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
45// We want to supply the actual storage and value for the flag variable in the
46// .cc file. We only do this for writable flags.
47#elif defined(FLAG_MODE_DEFINE)
48#define FLAG_FULL(ftype, ctype, nam, def, cmt) \
49 ctype FLAG_##nam = def;
50#define FLAG_READONLY(ftype, ctype, nam, def, cmt)
51
52// We need to define all of our default values so that the Flag structure can
53// access them by pointer. These are just used internally inside of one .cc,
54// for MODE_META, so there is no impact on the flags interface.
55#elif defined(FLAG_MODE_DEFINE_DEFAULTS)
56#define FLAG_FULL(ftype, ctype, nam, def, cmt) \
57 static ctype const FLAGDEFAULT_##nam = def;
58#define FLAG_READONLY(ftype, ctype, nam, def, cmt)
59
60
61// We want to write entries into our meta data table, for internal parsing and
62// printing / etc in the flag parser code. We only do this for writable flags.
63#elif defined(FLAG_MODE_META)
64#define FLAG_FULL(ftype, ctype, nam, def, cmt) \
65 { Flag::TYPE_##ftype, #nam, &FLAG_##nam, &FLAGDEFAULT_##nam, cmt, false },
66#define FLAG_READONLY(ftype, ctype, nam, def, cmt)
67
68#else
69#error No mode supplied when including flags.defs
70#endif
71
72#ifdef FLAG_MODE_DECLARE
73// Structure used to hold a collection of arguments to the JavaScript code.
74struct JSArguments {
75public:
76 JSArguments();
77 JSArguments(int argc, const char** argv);
78 int argc() const;
79 const char** argv();
80 const char*& operator[](int idx);
81 JSArguments& operator=(JSArguments args);
82private:
83 int argc_;
84 const char** argv_;
85};
86#endif
87
88#define DEFINE_bool(nam, def, cmt) FLAG(BOOL, bool, nam, def, cmt)
89#define DEFINE_int(nam, def, cmt) FLAG(INT, int, nam, def, cmt)
90#define DEFINE_float(nam, def, cmt) FLAG(FLOAT, double, nam, def, cmt)
91#define DEFINE_string(nam, def, cmt) FLAG(STRING, const char*, nam, def, cmt)
92#define DEFINE_args(nam, def, cmt) FLAG(ARGS, JSArguments, nam, def, cmt)
93
94//
95// Flags in all modes.
96//
97#define FLAG FLAG_FULL
98
Ben Murdochb0fe1622011-05-05 13:52:32 +010099// Flags for Crankshaft.
100#ifdef V8_TARGET_ARCH_IA32
101DEFINE_bool(crankshaft, true, "use crankshaft")
102#else
103DEFINE_bool(crankshaft, false, "use crankshaft")
104#endif
105DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter")
106DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation")
107DEFINE_bool(build_lithium, true, "use lithium chunk builder")
108DEFINE_bool(alloc_lithium, true, "use lithium register allocator")
109DEFINE_bool(use_lithium, true, "use lithium code generator")
110DEFINE_bool(use_range, true, "use hydrogen range analysis")
111DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis")
112DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
113DEFINE_bool(use_peeling, false, "use loop peeling")
114DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
115DEFINE_bool(use_inlining, true, "use function inlining")
116DEFINE_bool(limit_inlining, true, "limit code size growth from inlining")
117DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks")
118DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
119DEFINE_bool(time_hydrogen, false, "timing for hydrogen")
120DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
121DEFINE_bool(trace_inlining, false, "trace inlining decisions")
122DEFINE_bool(trace_alloc, false, "trace register allocator")
123DEFINE_bool(trace_range, false, "trace range analysis")
124DEFINE_bool(trace_gvn, false, "trace global value numbering")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100125DEFINE_bool(trace_representation, false, "trace representation types")
126DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
127DEFINE_bool(stress_environments, false, "environment for every instruction")
128DEFINE_int(deopt_every_n_times,
129 0,
130 "deoptimize every n times a deopt point is passed")
131DEFINE_bool(process_arguments_object, true, "try to deal with arguments object")
132DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
133DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
134DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
135DEFINE_bool(aggressive_loop_invariant_motion, true,
136 "aggressive motion of instructions out of loops")
137#ifdef V8_TARGET_ARCH_IA32
138DEFINE_bool(use_osr, true, "use on-stack replacement")
139#else
140DEFINE_bool(use_osr, false, "use on-stack replacement")
141#endif
142DEFINE_bool(trace_osr, false, "trace on-stack replacement")
143DEFINE_int(stress_runs, 0, "number of stress runs")
Ben Murdochb8e0da22011-05-16 14:20:40 +0100144DEFINE_bool(optimize_closures, true, "optimize closures")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100145
Steve Block3ce2e202009-11-05 08:53:23 +0000146// assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000147DEFINE_bool(debug_code, false,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100148 "generate extra code (assertions) for debugging")
149DEFINE_bool(code_comments, false, "emit comments in code disassembly")
Steve Blocka7e24c12009-10-30 11:49:00 +0000150DEFINE_bool(emit_branch_hints, false, "emit branch hints")
Leon Clarkef7060e22010-06-03 12:02:55 +0100151DEFINE_bool(peephole_optimization, true,
152 "perform peephole optimizations in assembly code")
153DEFINE_bool(print_peephole_optimization, false,
154 "print peephole optimizations in assembly code")
Steve Block3ce2e202009-11-05 08:53:23 +0000155DEFINE_bool(enable_sse2, true,
156 "enable use of SSE2 instructions if available")
157DEFINE_bool(enable_sse3, true,
158 "enable use of SSE3 instructions if available")
Ben Murdochf87a2032010-10-22 12:50:53 +0100159DEFINE_bool(enable_sse4_1, true,
160 "enable use of SSE4.1 instructions if available")
Steve Block3ce2e202009-11-05 08:53:23 +0000161DEFINE_bool(enable_cmov, true,
162 "enable use of CMOV instruction if available")
163DEFINE_bool(enable_rdtsc, true,
164 "enable use of RDTSC instruction if available")
165DEFINE_bool(enable_sahf, true,
166 "enable use of SAHF instruction if available (X64 only)")
Steve Blockd0582a62009-12-15 09:54:21 +0000167DEFINE_bool(enable_vfp3, true,
168 "enable use of VFP3 instructions if available (ARM only)")
Andrei Popescu31002712010-02-23 13:46:05 +0000169DEFINE_bool(enable_armv7, true,
170 "enable use of ARMv7 instructions if available (ARM only)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000171
172// bootstrapper.cc
173DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
174DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
Steve Blocka7e24c12009-10-30 11:49:00 +0000175DEFINE_bool(expose_gc, false, "expose gc extension")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100176DEFINE_bool(expose_externalize_string, false,
177 "expose externalize string extension")
Steve Blocka7e24c12009-10-30 11:49:00 +0000178DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
Steve Block6ded16b2010-05-10 14:33:55 +0100179DEFINE_bool(disable_native_files, false, "disable builtin natives files")
Steve Blocka7e24c12009-10-30 11:49:00 +0000180
181// builtins-ia32.cc
182DEFINE_bool(inline_new, true, "use fast inline allocation")
183
184// checks.cc
185DEFINE_bool(stack_trace_on_abort, true,
186 "print a stack trace if an assertion failure occurs")
187
188// codegen-ia32.cc / codegen-arm.cc
189DEFINE_bool(trace, false, "trace function calls")
190DEFINE_bool(defer_negation, true, "defer negation operation")
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800191DEFINE_bool(mask_constants_with_cookie,
192 true,
193 "use random jit cookie to mask large constants")
Steve Blocka7e24c12009-10-30 11:49:00 +0000194
195// codegen.cc
196DEFINE_bool(lazy, true, "use lazy compilation")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100197DEFINE_bool(trace_opt, false, "trace lazy optimization")
198DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
199DEFINE_bool(opt, true, "use adaptive optimizations")
200DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
201DEFINE_bool(always_opt, false, "always try to optimize functions")
202DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
Steve Blocka7e24c12009-10-30 11:49:00 +0000203DEFINE_bool(debug_info, true, "add debug information to compiled functions")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100204DEFINE_bool(deopt, true, "support deoptimization")
205DEFINE_bool(trace_deopt, false, "trace deoptimization")
Steve Blocka7e24c12009-10-30 11:49:00 +0000206
207// compiler.cc
208DEFINE_bool(strict, false, "strict error checking")
209DEFINE_int(min_preparse_length, 1024,
Steve Block3ce2e202009-11-05 08:53:23 +0000210 "minimum length for automatic enable preparsing")
Leon Clarked91b9f72010-01-27 17:25:45 +0000211DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code")
Leon Clarked91b9f72010-01-27 17:25:45 +0000212DEFINE_bool(always_full_compiler, false,
213 "try to use the dedicated run-once backend for all code")
Leon Clarked91b9f72010-01-27 17:25:45 +0000214DEFINE_bool(trace_bailout, false,
215 "print reasons for falling back to using the classic V8 backend")
Steve Block6ded16b2010-05-10 14:33:55 +0100216DEFINE_bool(safe_int32_compiler, true,
217 "enable optimized side-effect-free int32 expressions.")
218DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations")
Steve Blocka7e24c12009-10-30 11:49:00 +0000219
220// compilation-cache.cc
221DEFINE_bool(compilation_cache, true, "enable compilation cache")
222
Steve Block6ded16b2010-05-10 14:33:55 +0100223// data-flow.cc
224DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.")
225
Steve Blocka7e24c12009-10-30 11:49:00 +0000226// debug.cc
227DEFINE_bool(remote_debugging, false, "enable remote debugging")
228DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
Steve Blockd0582a62009-12-15 09:54:21 +0000229DEFINE_bool(debugger_auto_break, true,
Steve Blocka7e24c12009-10-30 11:49:00 +0000230 "automatically set the debug break flag when debugger commands are "
Steve Blockd0582a62009-12-15 09:54:21 +0000231 "in the queue")
Steve Block6ded16b2010-05-10 14:33:55 +0100232DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
Steve Blocka7e24c12009-10-30 11:49:00 +0000233
234// frames.cc
235DEFINE_int(max_stack_trace_source_length, 300,
236 "maximum length of function source code printed in a stack trace.")
237
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100238// full-codegen.cc
239DEFINE_bool(always_inline_smi_code, false,
240 "always inline smi code in non-opt code")
241
Steve Blocka7e24c12009-10-30 11:49:00 +0000242// heap.cc
Ben Murdochf87a2032010-10-22 12:50:53 +0100243DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
244DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
Russell Brenner90bac252010-11-18 13:33:46 -0800245DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000246DEFINE_bool(gc_global, false, "always perform global GCs")
247DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
248DEFINE_bool(trace_gc, false,
249 "print one trace line following each garbage collection")
Leon Clarkef7060e22010-06-03 12:02:55 +0100250DEFINE_bool(trace_gc_nvp, false,
251 "print one detailed trace line in name=value format "
252 "after each garbage collection")
253DEFINE_bool(print_cumulative_gc_stat, false,
254 "print cumulative GC statistics in name=value format on exit")
Steve Blocka7e24c12009-10-30 11:49:00 +0000255DEFINE_bool(trace_gc_verbose, false,
256 "print more details following each garbage collection")
257DEFINE_bool(collect_maps, true,
258 "garbage collect maps from which no objects can be reached")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100259DEFINE_bool(flush_code, true,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100260 "flush code that we expect not to use again before full gc")
Steve Blocka7e24c12009-10-30 11:49:00 +0000261
262// v8.cc
263DEFINE_bool(use_idle_notification, true,
264 "Use idle notification to reduce memory footprint.")
265// ic.cc
266DEFINE_bool(use_ic, true, "use inline caching")
267
268// macro-assembler-ia32.cc
269DEFINE_bool(native_code_counters, false,
270 "generate extra code for manipulating stats counters")
271
272// mark-compact.cc
273DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
274DEFINE_bool(never_compact, false,
275 "Never perform compaction on full GC - testing only")
276DEFINE_bool(cleanup_ics_at_gc, true,
277 "Flush inline caches prior to mark compact collection.")
278DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
279 "Flush code caches in maps during mark compact cycle.")
Steve Block6ded16b2010-05-10 14:33:55 +0100280DEFINE_int(random_seed, 0,
281 "Default seed for initializing random generator "
282 "(0, the default, means to use system random).")
Steve Blocka7e24c12009-10-30 11:49:00 +0000283
284DEFINE_bool(canonicalize_object_literal_maps, true,
285 "Canonicalize maps for object literals.")
286
Leon Clarkee46be812010-01-19 14:06:41 +0000287DEFINE_bool(use_big_map_space, true,
288 "Use big map space, but don't compact if it grew too big.")
289
Leon Clarked91b9f72010-01-27 17:25:45 +0000290DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
291 "Maximum number of pages in map space which still allows to encode "
292 "forwarding pointers. That's actually a constant, but it's useful "
293 "to control it with a flag for better testing.")
294
Steve Blocka7e24c12009-10-30 11:49:00 +0000295// mksnapshot.cc
296DEFINE_bool(h, false, "print this message")
Steve Blockd0582a62009-12-15 09:54:21 +0000297DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
Steve Blocka7e24c12009-10-30 11:49:00 +0000298
Ben Murdochb0fe1622011-05-05 13:52:32 +0100299// objects.cc
300DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
301
Steve Blocka7e24c12009-10-30 11:49:00 +0000302// parser.cc
303DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
304
305// rewriter.cc
306DEFINE_bool(optimize_ast, true, "optimize the ast")
307
Andrei Popescu31002712010-02-23 13:46:05 +0000308// simulator-arm.cc and simulator-mips.cc
Steve Block6ded16b2010-05-10 14:33:55 +0100309DEFINE_bool(trace_sim, false, "Trace simulator execution")
310DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
Steve Blocka7e24c12009-10-30 11:49:00 +0000311DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
Steve Block6ded16b2010-05-10 14:33:55 +0100312DEFINE_int(sim_stack_alignment, 8,
313 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000314
315// top.cc
316DEFINE_bool(trace_exception, false,
317 "print stack trace when throwing exceptions")
318DEFINE_bool(preallocate_message_memory, false,
319 "preallocate some memory to build stack traces.")
320
Steve Blocka7e24c12009-10-30 11:49:00 +0000321// v8.cc
322DEFINE_bool(preemption, false,
323 "activate a 100ms timer that switches between V8 threads")
324
325// Regexp
326DEFINE_bool(trace_regexps, false, "trace regexp execution")
327DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
Leon Clarkee46be812010-01-19 14:06:41 +0000328DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
Steve Blocka7e24c12009-10-30 11:49:00 +0000329
330// Testing flags test/cctest/test-{flags,api,serialization}.cc
331DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
332DEFINE_int(testing_int_flag, 13, "testing_int_flag")
333DEFINE_float(testing_float_flag, 2.5, "float-flag")
334DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
335DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
336#ifdef WIN32
337DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
338 "file in which to testing_serialize heap")
339#else
340DEFINE_string(testing_serialization_file, "/tmp/serdes",
341 "file in which to serialize heap")
342#endif
343
344//
345// Dev shell flags
346//
347
348DEFINE_bool(help, false, "Print usage message, including flags, on console")
349DEFINE_bool(dump_counters, false, "Dump counters on exit")
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100350DEFINE_bool(debugger, false, "Enable JavaScript debugger")
Steve Blocka7e24c12009-10-30 11:49:00 +0000351DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
352 "debugger agent in another process")
353DEFINE_bool(debugger_agent, false, "Enable debugger agent")
354DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
Iain Merrick9ac36c92010-09-13 15:29:50 +0100355DEFINE_string(map_counters, NULL, "Map counters to a file")
Steve Blocka7e24c12009-10-30 11:49:00 +0000356DEFINE_args(js_arguments, JSArguments(),
357 "Pass all remaining arguments to the script. Alias for \"--\".")
358
Ben Murdoch086aeea2011-05-13 15:57:08 +0100359#if defined(WEBOS__)
360DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
361DEFINE_bool(debug_script_collected_events, false,
362 "Enable debugger script collected events")
363#else
364DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
365DEFINE_bool(debug_script_collected_events, true,
366 "Enable debugger script collected events")
367#endif
368
Ben Murdochb8e0da22011-05-16 14:20:40 +0100369
370//
371// GDB JIT integration flags.
372//
373
374DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
375DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
376
Steve Blocka7e24c12009-10-30 11:49:00 +0000377//
378// Debug only flags
379//
380#undef FLAG
381#ifdef DEBUG
382#define FLAG FLAG_FULL
383#else
384#define FLAG FLAG_READONLY
385#endif
386
387// checks.cc
388DEFINE_bool(enable_slow_asserts, false,
389 "enable asserts that are slow to execute")
390
391// codegen-ia32.cc / codegen-arm.cc
392DEFINE_bool(trace_codegen, false,
393 "print name of functions for which code is generated")
394DEFINE_bool(print_source, false, "pretty print source code")
395DEFINE_bool(print_builtin_source, false,
396 "pretty print source code for builtins")
397DEFINE_bool(print_ast, false, "print source AST")
398DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
Steve Block3ce2e202009-11-05 08:53:23 +0000399DEFINE_bool(print_json_ast, false, "print source AST as JSON")
400DEFINE_bool(print_builtin_json_ast, false,
401 "print source AST for builtins as JSON")
Steve Blocka7e24c12009-10-30 11:49:00 +0000402DEFINE_bool(trace_calls, false, "trace calls")
403DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
404DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
405
406// compiler.cc
407DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
408DEFINE_bool(print_scopes, false, "print scopes")
Leon Clarke4515c472010-02-03 11:58:03 +0000409DEFINE_bool(print_ir, false, "print the AST as seen by the backend")
Steve Block6ded16b2010-05-10 14:33:55 +0100410DEFINE_bool(print_graph_text, false,
411 "print a text representation of the flow graph")
Steve Blocka7e24c12009-10-30 11:49:00 +0000412
413// contexts.cc
414DEFINE_bool(trace_contexts, false, "trace contexts operations")
415
416// heap.cc
417DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
418DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
419DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
420DEFINE_bool(code_stats, false, "report code statistics after GC")
421DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
422DEFINE_bool(print_handles, false, "report handles after GC")
423DEFINE_bool(print_global_handles, false, "report global handles after GC")
Steve Blocka7e24c12009-10-30 11:49:00 +0000424
425// ic.cc
426DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
427
428// objects.cc
429DEFINE_bool(trace_normalization,
430 false,
431 "prints when objects are turned into dictionaries.")
432
433// runtime.cc
434DEFINE_bool(trace_lazy, false, "trace lazy compilation")
435
436// serialize.cc
437DEFINE_bool(debug_serialization, false,
438 "write debug information into the snapshot.")
439
440// spaces.cc
441DEFINE_bool(collect_heap_spill_statistics, false,
442 "report heap spill statistics along with heap_stats "
443 "(requires heap_stats)")
444
Ben Murdochb0fe1622011-05-05 13:52:32 +0100445// VM state
446DEFINE_bool(log_state_changes, false, "Log state changes.")
447
Steve Blocka7e24c12009-10-30 11:49:00 +0000448// Regexp
Leon Clarkee46be812010-01-19 14:06:41 +0000449DEFINE_bool(regexp_possessive_quantifier,
450 false,
451 "enable possessive quantifier syntax for testing")
Steve Blocka7e24c12009-10-30 11:49:00 +0000452DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
453DEFINE_bool(trace_regexp_assembler,
454 false,
455 "trace regexp macro assembler calls.")
456
457//
458// Logging and profiling only flags
459//
460#undef FLAG
461#ifdef ENABLE_LOGGING_AND_PROFILING
462#define FLAG FLAG_FULL
463#else
464#define FLAG FLAG_READONLY
465#endif
466
467// log.cc
468DEFINE_bool(log, false,
469 "Minimal logging (no API, code, GC, suspect, or handles samples).")
470DEFINE_bool(log_all, false, "Log all events to the log file.")
471DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
472DEFINE_bool(log_api, false, "Log API events to the log file.")
473DEFINE_bool(log_code, false,
474 "Log code events to the log file without profiling.")
475DEFINE_bool(log_gc, false,
476 "Log heap samples on garbage collection for the hp2ps tool.")
477DEFINE_bool(log_handles, false, "Log global handle events.")
Leon Clarkee46be812010-01-19 14:06:41 +0000478DEFINE_bool(log_snapshot_positions, false,
479 "log positions of (de)serialized objects in the snapshot.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000480DEFINE_bool(log_suspect, false, "Log suspect operations.")
Steve Block3ce2e202009-11-05 08:53:23 +0000481DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000482DEFINE_bool(prof, false,
483 "Log statistical profiling information (implies --log-code).")
484DEFINE_bool(prof_auto, true,
485 "Used with --prof, starts profiling automatically")
486DEFINE_bool(prof_lazy, false,
487 "Used with --prof, only does sampling and logging"
488 " when profiler is active (implies --noprof_auto).")
Steve Block6ded16b2010-05-10 14:33:55 +0100489DEFINE_bool(prof_browser_mode, true,
490 "Used with --prof, turns on browser-compatible mode for profiling.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000491DEFINE_bool(log_regexp, false, "Log regular expression execution.")
492DEFINE_bool(sliding_state_window, false,
493 "Update sliding state window counters.")
Andrei Popescu402d9372010-02-26 13:31:12 +0000494DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000495DEFINE_bool(oprofile, false, "Enable JIT agent for OProfile.")
Ben Murdochf87a2032010-10-22 12:50:53 +0100496DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000497
498//
499// Heap protection flags
500// Using heap protection requires ENABLE_LOGGING_AND_PROFILING as well.
501//
502#ifdef ENABLE_HEAP_PROTECTION
503#undef FLAG
504#define FLAG FLAG_FULL
505
506DEFINE_bool(protect_heap, false,
507 "Protect/unprotect V8's heap when leaving/entring the VM.")
508
509#endif
510
511//
512// Disassembler only flags
513//
514#undef FLAG
515#ifdef ENABLE_DISASSEMBLER
516#define FLAG FLAG_FULL
517#else
518#define FLAG FLAG_READONLY
519#endif
520
521// code-stubs.cc
522DEFINE_bool(print_code_stubs, false, "print code stubs")
523
524// codegen-ia32.cc / codegen-arm.cc
525DEFINE_bool(print_code, false, "print generated code")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100526DEFINE_bool(print_opt_code, false, "print optimized code")
527DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
528 "printing optimized code based on it")
529DEFINE_bool(print_code_verbose, false, "print more information for code")
Steve Blocka7e24c12009-10-30 11:49:00 +0000530DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
531
532// Cleanup...
533#undef FLAG_FULL
534#undef FLAG_READONLY
535#undef FLAG
536
537#undef DEFINE_bool
538#undef DEFINE_int
539#undef DEFINE_string
540
541#undef FLAG_MODE_DECLARE
542#undef FLAG_MODE_DEFINE
543#undef FLAG_MODE_DEFINE_DEFAULTS
544#undef FLAG_MODE_META