blob: 57defdc79327164ac29f825cbe527deff701bfdd [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
Steve Block1e0659c2011-05-24 12:43:12 +0100234// execution.cc
235DEFINE_int(stack_size, kPointerSize * 128,
236 "default size of stack region v8 is allowed to use (in KkBytes)")
237
Steve Blocka7e24c12009-10-30 11:49:00 +0000238// frames.cc
239DEFINE_int(max_stack_trace_source_length, 300,
240 "maximum length of function source code printed in a stack trace.")
241
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100242// full-codegen.cc
243DEFINE_bool(always_inline_smi_code, false,
244 "always inline smi code in non-opt code")
245
Steve Blocka7e24c12009-10-30 11:49:00 +0000246// heap.cc
Ben Murdochf87a2032010-10-22 12:50:53 +0100247DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
248DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
Russell Brenner90bac252010-11-18 13:33:46 -0800249DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000250DEFINE_bool(gc_global, false, "always perform global GCs")
251DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
252DEFINE_bool(trace_gc, false,
253 "print one trace line following each garbage collection")
Leon Clarkef7060e22010-06-03 12:02:55 +0100254DEFINE_bool(trace_gc_nvp, false,
255 "print one detailed trace line in name=value format "
256 "after each garbage collection")
257DEFINE_bool(print_cumulative_gc_stat, false,
258 "print cumulative GC statistics in name=value format on exit")
Steve Blocka7e24c12009-10-30 11:49:00 +0000259DEFINE_bool(trace_gc_verbose, false,
260 "print more details following each garbage collection")
261DEFINE_bool(collect_maps, true,
262 "garbage collect maps from which no objects can be reached")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100263DEFINE_bool(flush_code, true,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100264 "flush code that we expect not to use again before full gc")
Steve Blocka7e24c12009-10-30 11:49:00 +0000265
266// v8.cc
267DEFINE_bool(use_idle_notification, true,
268 "Use idle notification to reduce memory footprint.")
269// ic.cc
270DEFINE_bool(use_ic, true, "use inline caching")
271
272// macro-assembler-ia32.cc
273DEFINE_bool(native_code_counters, false,
274 "generate extra code for manipulating stats counters")
275
276// mark-compact.cc
277DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
278DEFINE_bool(never_compact, false,
279 "Never perform compaction on full GC - testing only")
280DEFINE_bool(cleanup_ics_at_gc, true,
281 "Flush inline caches prior to mark compact collection.")
282DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
283 "Flush code caches in maps during mark compact cycle.")
Steve Block6ded16b2010-05-10 14:33:55 +0100284DEFINE_int(random_seed, 0,
285 "Default seed for initializing random generator "
286 "(0, the default, means to use system random).")
Steve Blocka7e24c12009-10-30 11:49:00 +0000287
288DEFINE_bool(canonicalize_object_literal_maps, true,
289 "Canonicalize maps for object literals.")
290
Leon Clarkee46be812010-01-19 14:06:41 +0000291DEFINE_bool(use_big_map_space, true,
292 "Use big map space, but don't compact if it grew too big.")
293
Leon Clarked91b9f72010-01-27 17:25:45 +0000294DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
295 "Maximum number of pages in map space which still allows to encode "
296 "forwarding pointers. That's actually a constant, but it's useful "
297 "to control it with a flag for better testing.")
298
Steve Blocka7e24c12009-10-30 11:49:00 +0000299// mksnapshot.cc
300DEFINE_bool(h, false, "print this message")
Steve Blockd0582a62009-12-15 09:54:21 +0000301DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
Steve Blocka7e24c12009-10-30 11:49:00 +0000302
Ben Murdochb0fe1622011-05-05 13:52:32 +0100303// objects.cc
304DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
305
Steve Blocka7e24c12009-10-30 11:49:00 +0000306// parser.cc
307DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
Steve Block1e0659c2011-05-24 12:43:12 +0100308DEFINE_bool(strict_mode, true, "allow strict mode directives")
Steve Blocka7e24c12009-10-30 11:49:00 +0000309
310// rewriter.cc
311DEFINE_bool(optimize_ast, true, "optimize the ast")
312
Andrei Popescu31002712010-02-23 13:46:05 +0000313// simulator-arm.cc and simulator-mips.cc
Steve Block6ded16b2010-05-10 14:33:55 +0100314DEFINE_bool(trace_sim, false, "Trace simulator execution")
315DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
Steve Blocka7e24c12009-10-30 11:49:00 +0000316DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
Steve Block6ded16b2010-05-10 14:33:55 +0100317DEFINE_int(sim_stack_alignment, 8,
318 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000319
320// top.cc
321DEFINE_bool(trace_exception, false,
322 "print stack trace when throwing exceptions")
323DEFINE_bool(preallocate_message_memory, false,
324 "preallocate some memory to build stack traces.")
325
Steve Blocka7e24c12009-10-30 11:49:00 +0000326// v8.cc
327DEFINE_bool(preemption, false,
328 "activate a 100ms timer that switches between V8 threads")
329
330// Regexp
331DEFINE_bool(trace_regexps, false, "trace regexp execution")
332DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
Leon Clarkee46be812010-01-19 14:06:41 +0000333DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
Steve Blocka7e24c12009-10-30 11:49:00 +0000334
335// Testing flags test/cctest/test-{flags,api,serialization}.cc
336DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
337DEFINE_int(testing_int_flag, 13, "testing_int_flag")
338DEFINE_float(testing_float_flag, 2.5, "float-flag")
339DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
340DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
341#ifdef WIN32
342DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
343 "file in which to testing_serialize heap")
344#else
345DEFINE_string(testing_serialization_file, "/tmp/serdes",
346 "file in which to serialize heap")
347#endif
348
349//
350// Dev shell flags
351//
352
353DEFINE_bool(help, false, "Print usage message, including flags, on console")
354DEFINE_bool(dump_counters, false, "Dump counters on exit")
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100355DEFINE_bool(debugger, false, "Enable JavaScript debugger")
Steve Blocka7e24c12009-10-30 11:49:00 +0000356DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
357 "debugger agent in another process")
358DEFINE_bool(debugger_agent, false, "Enable debugger agent")
359DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
Iain Merrick9ac36c92010-09-13 15:29:50 +0100360DEFINE_string(map_counters, NULL, "Map counters to a file")
Steve Blocka7e24c12009-10-30 11:49:00 +0000361DEFINE_args(js_arguments, JSArguments(),
362 "Pass all remaining arguments to the script. Alias for \"--\".")
363
Ben Murdoch086aeea2011-05-13 15:57:08 +0100364#if defined(WEBOS__)
365DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
366DEFINE_bool(debug_script_collected_events, false,
367 "Enable debugger script collected events")
368#else
369DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
370DEFINE_bool(debug_script_collected_events, true,
371 "Enable debugger script collected events")
372#endif
373
Ben Murdochb8e0da22011-05-16 14:20:40 +0100374
375//
376// GDB JIT integration flags.
377//
378
379DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
380DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
381
Steve Blocka7e24c12009-10-30 11:49:00 +0000382//
383// Debug only flags
384//
385#undef FLAG
386#ifdef DEBUG
387#define FLAG FLAG_FULL
388#else
389#define FLAG FLAG_READONLY
390#endif
391
392// checks.cc
393DEFINE_bool(enable_slow_asserts, false,
394 "enable asserts that are slow to execute")
395
396// codegen-ia32.cc / codegen-arm.cc
397DEFINE_bool(trace_codegen, false,
398 "print name of functions for which code is generated")
399DEFINE_bool(print_source, false, "pretty print source code")
400DEFINE_bool(print_builtin_source, false,
401 "pretty print source code for builtins")
402DEFINE_bool(print_ast, false, "print source AST")
403DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
Steve Block3ce2e202009-11-05 08:53:23 +0000404DEFINE_bool(print_json_ast, false, "print source AST as JSON")
405DEFINE_bool(print_builtin_json_ast, false,
406 "print source AST for builtins as JSON")
Steve Blocka7e24c12009-10-30 11:49:00 +0000407DEFINE_bool(trace_calls, false, "trace calls")
408DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
409DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
410
411// compiler.cc
412DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
413DEFINE_bool(print_scopes, false, "print scopes")
Leon Clarke4515c472010-02-03 11:58:03 +0000414DEFINE_bool(print_ir, false, "print the AST as seen by the backend")
Steve Block6ded16b2010-05-10 14:33:55 +0100415DEFINE_bool(print_graph_text, false,
416 "print a text representation of the flow graph")
Steve Blocka7e24c12009-10-30 11:49:00 +0000417
418// contexts.cc
419DEFINE_bool(trace_contexts, false, "trace contexts operations")
420
421// heap.cc
422DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
423DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
424DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
425DEFINE_bool(code_stats, false, "report code statistics after GC")
426DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
427DEFINE_bool(print_handles, false, "report handles after GC")
428DEFINE_bool(print_global_handles, false, "report global handles after GC")
Steve Blocka7e24c12009-10-30 11:49:00 +0000429
430// ic.cc
431DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
432
433// objects.cc
434DEFINE_bool(trace_normalization,
435 false,
436 "prints when objects are turned into dictionaries.")
437
438// runtime.cc
439DEFINE_bool(trace_lazy, false, "trace lazy compilation")
440
441// serialize.cc
442DEFINE_bool(debug_serialization, false,
443 "write debug information into the snapshot.")
444
445// spaces.cc
446DEFINE_bool(collect_heap_spill_statistics, false,
447 "report heap spill statistics along with heap_stats "
448 "(requires heap_stats)")
449
Ben Murdochb0fe1622011-05-05 13:52:32 +0100450// VM state
451DEFINE_bool(log_state_changes, false, "Log state changes.")
452
Steve Blocka7e24c12009-10-30 11:49:00 +0000453// Regexp
Leon Clarkee46be812010-01-19 14:06:41 +0000454DEFINE_bool(regexp_possessive_quantifier,
455 false,
456 "enable possessive quantifier syntax for testing")
Steve Blocka7e24c12009-10-30 11:49:00 +0000457DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
458DEFINE_bool(trace_regexp_assembler,
459 false,
460 "trace regexp macro assembler calls.")
461
462//
463// Logging and profiling only flags
464//
465#undef FLAG
466#ifdef ENABLE_LOGGING_AND_PROFILING
467#define FLAG FLAG_FULL
468#else
469#define FLAG FLAG_READONLY
470#endif
471
472// log.cc
473DEFINE_bool(log, false,
474 "Minimal logging (no API, code, GC, suspect, or handles samples).")
475DEFINE_bool(log_all, false, "Log all events to the log file.")
476DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
477DEFINE_bool(log_api, false, "Log API events to the log file.")
478DEFINE_bool(log_code, false,
479 "Log code events to the log file without profiling.")
480DEFINE_bool(log_gc, false,
481 "Log heap samples on garbage collection for the hp2ps tool.")
482DEFINE_bool(log_handles, false, "Log global handle events.")
Leon Clarkee46be812010-01-19 14:06:41 +0000483DEFINE_bool(log_snapshot_positions, false,
484 "log positions of (de)serialized objects in the snapshot.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000485DEFINE_bool(log_suspect, false, "Log suspect operations.")
Steve Block3ce2e202009-11-05 08:53:23 +0000486DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000487DEFINE_bool(prof, false,
488 "Log statistical profiling information (implies --log-code).")
489DEFINE_bool(prof_auto, true,
490 "Used with --prof, starts profiling automatically")
491DEFINE_bool(prof_lazy, false,
492 "Used with --prof, only does sampling and logging"
493 " when profiler is active (implies --noprof_auto).")
Steve Block6ded16b2010-05-10 14:33:55 +0100494DEFINE_bool(prof_browser_mode, true,
495 "Used with --prof, turns on browser-compatible mode for profiling.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000496DEFINE_bool(log_regexp, false, "Log regular expression execution.")
497DEFINE_bool(sliding_state_window, false,
498 "Update sliding state window counters.")
Andrei Popescu402d9372010-02-26 13:31:12 +0000499DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
Ben Murdochf87a2032010-10-22 12:50:53 +0100500DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000501
502//
503// Heap protection flags
504// Using heap protection requires ENABLE_LOGGING_AND_PROFILING as well.
505//
506#ifdef ENABLE_HEAP_PROTECTION
507#undef FLAG
508#define FLAG FLAG_FULL
509
510DEFINE_bool(protect_heap, false,
511 "Protect/unprotect V8's heap when leaving/entring the VM.")
512
513#endif
514
515//
516// Disassembler only flags
517//
518#undef FLAG
519#ifdef ENABLE_DISASSEMBLER
520#define FLAG FLAG_FULL
521#else
522#define FLAG FLAG_READONLY
523#endif
524
525// code-stubs.cc
526DEFINE_bool(print_code_stubs, false, "print code stubs")
527
528// codegen-ia32.cc / codegen-arm.cc
529DEFINE_bool(print_code, false, "print generated code")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100530DEFINE_bool(print_opt_code, false, "print optimized code")
531DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
532 "printing optimized code based on it")
533DEFINE_bool(print_code_verbose, false, "print more information for code")
Steve Blocka7e24c12009-10-30 11:49:00 +0000534DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
535
536// Cleanup...
537#undef FLAG_FULL
538#undef FLAG_READONLY
539#undef FLAG
540
541#undef DEFINE_bool
542#undef DEFINE_int
543#undef DEFINE_string
544
545#undef FLAG_MODE_DECLARE
546#undef FLAG_MODE_DEFINE
547#undef FLAG_MODE_DEFINE_DEFAULTS
548#undef FLAG_MODE_META