blob: 6e73258f78946f9044672f08160f437d612e6a57 [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")
144
Steve Block3ce2e202009-11-05 08:53:23 +0000145// assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000146DEFINE_bool(debug_code, false,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100147 "generate extra code (assertions) for debugging")
148DEFINE_bool(code_comments, false, "emit comments in code disassembly")
Steve Blocka7e24c12009-10-30 11:49:00 +0000149DEFINE_bool(emit_branch_hints, false, "emit branch hints")
Leon Clarkef7060e22010-06-03 12:02:55 +0100150DEFINE_bool(peephole_optimization, true,
151 "perform peephole optimizations in assembly code")
152DEFINE_bool(print_peephole_optimization, false,
153 "print peephole optimizations in assembly code")
Steve Block3ce2e202009-11-05 08:53:23 +0000154DEFINE_bool(enable_sse2, true,
155 "enable use of SSE2 instructions if available")
156DEFINE_bool(enable_sse3, true,
157 "enable use of SSE3 instructions if available")
Ben Murdochf87a2032010-10-22 12:50:53 +0100158DEFINE_bool(enable_sse4_1, true,
159 "enable use of SSE4.1 instructions if available")
Steve Block3ce2e202009-11-05 08:53:23 +0000160DEFINE_bool(enable_cmov, true,
161 "enable use of CMOV instruction if available")
162DEFINE_bool(enable_rdtsc, true,
163 "enable use of RDTSC instruction if available")
164DEFINE_bool(enable_sahf, true,
165 "enable use of SAHF instruction if available (X64 only)")
Steve Blockd0582a62009-12-15 09:54:21 +0000166DEFINE_bool(enable_vfp3, true,
167 "enable use of VFP3 instructions if available (ARM only)")
Andrei Popescu31002712010-02-23 13:46:05 +0000168DEFINE_bool(enable_armv7, true,
169 "enable use of ARMv7 instructions if available (ARM only)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000170
171// bootstrapper.cc
172DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
173DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
Steve Blocka7e24c12009-10-30 11:49:00 +0000174DEFINE_bool(expose_gc, false, "expose gc extension")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100175DEFINE_bool(expose_externalize_string, false,
176 "expose externalize string extension")
Steve Blocka7e24c12009-10-30 11:49:00 +0000177DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
Steve Block6ded16b2010-05-10 14:33:55 +0100178DEFINE_bool(disable_native_files, false, "disable builtin natives files")
Steve Blocka7e24c12009-10-30 11:49:00 +0000179
180// builtins-ia32.cc
181DEFINE_bool(inline_new, true, "use fast inline allocation")
182
183// checks.cc
184DEFINE_bool(stack_trace_on_abort, true,
185 "print a stack trace if an assertion failure occurs")
186
187// codegen-ia32.cc / codegen-arm.cc
188DEFINE_bool(trace, false, "trace function calls")
189DEFINE_bool(defer_negation, true, "defer negation operation")
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800190DEFINE_bool(mask_constants_with_cookie,
191 true,
192 "use random jit cookie to mask large constants")
Steve Blocka7e24c12009-10-30 11:49:00 +0000193
194// codegen.cc
195DEFINE_bool(lazy, true, "use lazy compilation")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100196DEFINE_bool(trace_opt, false, "trace lazy optimization")
197DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
198DEFINE_bool(opt, true, "use adaptive optimizations")
199DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
200DEFINE_bool(always_opt, false, "always try to optimize functions")
201DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
Steve Blocka7e24c12009-10-30 11:49:00 +0000202DEFINE_bool(debug_info, true, "add debug information to compiled functions")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100203DEFINE_bool(deopt, true, "support deoptimization")
204DEFINE_bool(trace_deopt, false, "trace deoptimization")
Steve Blocka7e24c12009-10-30 11:49:00 +0000205
206// compiler.cc
207DEFINE_bool(strict, false, "strict error checking")
208DEFINE_int(min_preparse_length, 1024,
Steve Block3ce2e202009-11-05 08:53:23 +0000209 "minimum length for automatic enable preparsing")
Leon Clarked91b9f72010-01-27 17:25:45 +0000210DEFINE_bool(full_compiler, true, "enable dedicated backend for run-once code")
Leon Clarked91b9f72010-01-27 17:25:45 +0000211DEFINE_bool(always_full_compiler, false,
212 "try to use the dedicated run-once backend for all code")
Leon Clarked91b9f72010-01-27 17:25:45 +0000213DEFINE_bool(trace_bailout, false,
214 "print reasons for falling back to using the classic V8 backend")
Steve Block6ded16b2010-05-10 14:33:55 +0100215DEFINE_bool(safe_int32_compiler, true,
216 "enable optimized side-effect-free int32 expressions.")
217DEFINE_bool(use_flow_graph, false, "perform flow-graph based optimizations")
Steve Blocka7e24c12009-10-30 11:49:00 +0000218
219// compilation-cache.cc
220DEFINE_bool(compilation_cache, true, "enable compilation cache")
221
Steve Block6ded16b2010-05-10 14:33:55 +0100222// data-flow.cc
223DEFINE_bool(loop_peeling, false, "Peel off the first iteration of loops.")
224
Steve Blocka7e24c12009-10-30 11:49:00 +0000225// debug.cc
226DEFINE_bool(remote_debugging, false, "enable remote debugging")
227DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
Steve Blockd0582a62009-12-15 09:54:21 +0000228DEFINE_bool(debugger_auto_break, true,
Steve Blocka7e24c12009-10-30 11:49:00 +0000229 "automatically set the debug break flag when debugger commands are "
Steve Blockd0582a62009-12-15 09:54:21 +0000230 "in the queue")
Steve Block6ded16b2010-05-10 14:33:55 +0100231DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
Steve Blocka7e24c12009-10-30 11:49:00 +0000232
233// frames.cc
234DEFINE_int(max_stack_trace_source_length, 300,
235 "maximum length of function source code printed in a stack trace.")
236
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100237// full-codegen.cc
238DEFINE_bool(always_inline_smi_code, false,
239 "always inline smi code in non-opt code")
240
Steve Blocka7e24c12009-10-30 11:49:00 +0000241// heap.cc
Ben Murdochf87a2032010-10-22 12:50:53 +0100242DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
243DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
Russell Brenner90bac252010-11-18 13:33:46 -0800244DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000245DEFINE_bool(gc_global, false, "always perform global GCs")
246DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
247DEFINE_bool(trace_gc, false,
248 "print one trace line following each garbage collection")
Leon Clarkef7060e22010-06-03 12:02:55 +0100249DEFINE_bool(trace_gc_nvp, false,
250 "print one detailed trace line in name=value format "
251 "after each garbage collection")
252DEFINE_bool(print_cumulative_gc_stat, false,
253 "print cumulative GC statistics in name=value format on exit")
Steve Blocka7e24c12009-10-30 11:49:00 +0000254DEFINE_bool(trace_gc_verbose, false,
255 "print more details following each garbage collection")
256DEFINE_bool(collect_maps, true,
257 "garbage collect maps from which no objects can be reached")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100258DEFINE_bool(flush_code, true,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100259 "flush code that we expect not to use again before full gc")
Steve Blocka7e24c12009-10-30 11:49:00 +0000260
261// v8.cc
262DEFINE_bool(use_idle_notification, true,
263 "Use idle notification to reduce memory footprint.")
264// ic.cc
265DEFINE_bool(use_ic, true, "use inline caching")
266
267// macro-assembler-ia32.cc
268DEFINE_bool(native_code_counters, false,
269 "generate extra code for manipulating stats counters")
270
271// mark-compact.cc
272DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
273DEFINE_bool(never_compact, false,
274 "Never perform compaction on full GC - testing only")
275DEFINE_bool(cleanup_ics_at_gc, true,
276 "Flush inline caches prior to mark compact collection.")
277DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
278 "Flush code caches in maps during mark compact cycle.")
Steve Block6ded16b2010-05-10 14:33:55 +0100279DEFINE_int(random_seed, 0,
280 "Default seed for initializing random generator "
281 "(0, the default, means to use system random).")
Steve Blocka7e24c12009-10-30 11:49:00 +0000282
283DEFINE_bool(canonicalize_object_literal_maps, true,
284 "Canonicalize maps for object literals.")
285
Leon Clarkee46be812010-01-19 14:06:41 +0000286DEFINE_bool(use_big_map_space, true,
287 "Use big map space, but don't compact if it grew too big.")
288
Leon Clarked91b9f72010-01-27 17:25:45 +0000289DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
290 "Maximum number of pages in map space which still allows to encode "
291 "forwarding pointers. That's actually a constant, but it's useful "
292 "to control it with a flag for better testing.")
293
Steve Blocka7e24c12009-10-30 11:49:00 +0000294// mksnapshot.cc
295DEFINE_bool(h, false, "print this message")
Steve Blockd0582a62009-12-15 09:54:21 +0000296DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
Steve Blocka7e24c12009-10-30 11:49:00 +0000297
Ben Murdochb0fe1622011-05-05 13:52:32 +0100298// objects.cc
299DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
300
Steve Blocka7e24c12009-10-30 11:49:00 +0000301// parser.cc
302DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
303
304// rewriter.cc
305DEFINE_bool(optimize_ast, true, "optimize the ast")
306
Andrei Popescu31002712010-02-23 13:46:05 +0000307// simulator-arm.cc and simulator-mips.cc
Steve Block6ded16b2010-05-10 14:33:55 +0100308DEFINE_bool(trace_sim, false, "Trace simulator execution")
309DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator")
Steve Blocka7e24c12009-10-30 11:49:00 +0000310DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
Steve Block6ded16b2010-05-10 14:33:55 +0100311DEFINE_int(sim_stack_alignment, 8,
312 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000313
314// top.cc
315DEFINE_bool(trace_exception, false,
316 "print stack trace when throwing exceptions")
317DEFINE_bool(preallocate_message_memory, false,
318 "preallocate some memory to build stack traces.")
319
Steve Blocka7e24c12009-10-30 11:49:00 +0000320// v8.cc
321DEFINE_bool(preemption, false,
322 "activate a 100ms timer that switches between V8 threads")
323
324// Regexp
325DEFINE_bool(trace_regexps, false, "trace regexp execution")
326DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
Leon Clarkee46be812010-01-19 14:06:41 +0000327DEFINE_bool(regexp_entry_native, true, "use native code to enter regexp")
Steve Blocka7e24c12009-10-30 11:49:00 +0000328
329// Testing flags test/cctest/test-{flags,api,serialization}.cc
330DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
331DEFINE_int(testing_int_flag, 13, "testing_int_flag")
332DEFINE_float(testing_float_flag, 2.5, "float-flag")
333DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
334DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
335#ifdef WIN32
336DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
337 "file in which to testing_serialize heap")
338#else
339DEFINE_string(testing_serialization_file, "/tmp/serdes",
340 "file in which to serialize heap")
341#endif
342
343//
344// Dev shell flags
345//
346
347DEFINE_bool(help, false, "Print usage message, including flags, on console")
348DEFINE_bool(dump_counters, false, "Dump counters on exit")
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100349DEFINE_bool(debugger, false, "Enable JavaScript debugger")
Steve Blocka7e24c12009-10-30 11:49:00 +0000350DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
351 "debugger agent in another process")
352DEFINE_bool(debugger_agent, false, "Enable debugger agent")
353DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
Iain Merrick9ac36c92010-09-13 15:29:50 +0100354DEFINE_string(map_counters, NULL, "Map counters to a file")
Steve Blocka7e24c12009-10-30 11:49:00 +0000355DEFINE_args(js_arguments, JSArguments(),
356 "Pass all remaining arguments to the script. Alias for \"--\".")
357
Ben Murdoch086aeea2011-05-13 15:57:08 +0100358#if defined(WEBOS__)
359DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
360DEFINE_bool(debug_script_collected_events, false,
361 "Enable debugger script collected events")
362#else
363DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
364DEFINE_bool(debug_script_collected_events, true,
365 "Enable debugger script collected events")
366#endif
367
Steve Blocka7e24c12009-10-30 11:49:00 +0000368//
369// Debug only flags
370//
371#undef FLAG
372#ifdef DEBUG
373#define FLAG FLAG_FULL
374#else
375#define FLAG FLAG_READONLY
376#endif
377
378// checks.cc
379DEFINE_bool(enable_slow_asserts, false,
380 "enable asserts that are slow to execute")
381
382// codegen-ia32.cc / codegen-arm.cc
383DEFINE_bool(trace_codegen, false,
384 "print name of functions for which code is generated")
385DEFINE_bool(print_source, false, "pretty print source code")
386DEFINE_bool(print_builtin_source, false,
387 "pretty print source code for builtins")
388DEFINE_bool(print_ast, false, "print source AST")
389DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
Steve Block3ce2e202009-11-05 08:53:23 +0000390DEFINE_bool(print_json_ast, false, "print source AST as JSON")
391DEFINE_bool(print_builtin_json_ast, false,
392 "print source AST for builtins as JSON")
Steve Blocka7e24c12009-10-30 11:49:00 +0000393DEFINE_bool(trace_calls, false, "trace calls")
394DEFINE_bool(trace_builtin_calls, false, "trace builtins calls")
395DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
396
397// compiler.cc
398DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
399DEFINE_bool(print_scopes, false, "print scopes")
Leon Clarke4515c472010-02-03 11:58:03 +0000400DEFINE_bool(print_ir, false, "print the AST as seen by the backend")
Steve Block6ded16b2010-05-10 14:33:55 +0100401DEFINE_bool(print_graph_text, false,
402 "print a text representation of the flow graph")
Steve Blocka7e24c12009-10-30 11:49:00 +0000403
404// contexts.cc
405DEFINE_bool(trace_contexts, false, "trace contexts operations")
406
407// heap.cc
408DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
409DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
410DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
411DEFINE_bool(code_stats, false, "report code statistics after GC")
412DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
413DEFINE_bool(print_handles, false, "report handles after GC")
414DEFINE_bool(print_global_handles, false, "report global handles after GC")
Steve Blocka7e24c12009-10-30 11:49:00 +0000415
416// ic.cc
417DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
418
419// objects.cc
420DEFINE_bool(trace_normalization,
421 false,
422 "prints when objects are turned into dictionaries.")
423
424// runtime.cc
425DEFINE_bool(trace_lazy, false, "trace lazy compilation")
426
427// serialize.cc
428DEFINE_bool(debug_serialization, false,
429 "write debug information into the snapshot.")
430
431// spaces.cc
432DEFINE_bool(collect_heap_spill_statistics, false,
433 "report heap spill statistics along with heap_stats "
434 "(requires heap_stats)")
435
Ben Murdochb0fe1622011-05-05 13:52:32 +0100436// VM state
437DEFINE_bool(log_state_changes, false, "Log state changes.")
438
Steve Blocka7e24c12009-10-30 11:49:00 +0000439// Regexp
Leon Clarkee46be812010-01-19 14:06:41 +0000440DEFINE_bool(regexp_possessive_quantifier,
441 false,
442 "enable possessive quantifier syntax for testing")
Steve Blocka7e24c12009-10-30 11:49:00 +0000443DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
444DEFINE_bool(trace_regexp_assembler,
445 false,
446 "trace regexp macro assembler calls.")
447
448//
449// Logging and profiling only flags
450//
451#undef FLAG
452#ifdef ENABLE_LOGGING_AND_PROFILING
453#define FLAG FLAG_FULL
454#else
455#define FLAG FLAG_READONLY
456#endif
457
458// log.cc
459DEFINE_bool(log, false,
460 "Minimal logging (no API, code, GC, suspect, or handles samples).")
461DEFINE_bool(log_all, false, "Log all events to the log file.")
462DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
463DEFINE_bool(log_api, false, "Log API events to the log file.")
464DEFINE_bool(log_code, false,
465 "Log code events to the log file without profiling.")
466DEFINE_bool(log_gc, false,
467 "Log heap samples on garbage collection for the hp2ps tool.")
468DEFINE_bool(log_handles, false, "Log global handle events.")
Leon Clarkee46be812010-01-19 14:06:41 +0000469DEFINE_bool(log_snapshot_positions, false,
470 "log positions of (de)serialized objects in the snapshot.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000471DEFINE_bool(log_suspect, false, "Log suspect operations.")
Steve Block3ce2e202009-11-05 08:53:23 +0000472DEFINE_bool(log_producers, false, "Log stack traces of JS objects allocations.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000473DEFINE_bool(prof, false,
474 "Log statistical profiling information (implies --log-code).")
475DEFINE_bool(prof_auto, true,
476 "Used with --prof, starts profiling automatically")
477DEFINE_bool(prof_lazy, false,
478 "Used with --prof, only does sampling and logging"
479 " when profiler is active (implies --noprof_auto).")
Steve Block6ded16b2010-05-10 14:33:55 +0100480DEFINE_bool(prof_browser_mode, true,
481 "Used with --prof, turns on browser-compatible mode for profiling.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000482DEFINE_bool(log_regexp, false, "Log regular expression execution.")
483DEFINE_bool(sliding_state_window, false,
484 "Update sliding state window counters.")
Andrei Popescu402d9372010-02-26 13:31:12 +0000485DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000486DEFINE_bool(oprofile, false, "Enable JIT agent for OProfile.")
Ben Murdochf87a2032010-10-22 12:50:53 +0100487DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000488
489//
490// Heap protection flags
491// Using heap protection requires ENABLE_LOGGING_AND_PROFILING as well.
492//
493#ifdef ENABLE_HEAP_PROTECTION
494#undef FLAG
495#define FLAG FLAG_FULL
496
497DEFINE_bool(protect_heap, false,
498 "Protect/unprotect V8's heap when leaving/entring the VM.")
499
500#endif
501
502//
503// Disassembler only flags
504//
505#undef FLAG
506#ifdef ENABLE_DISASSEMBLER
507#define FLAG FLAG_FULL
508#else
509#define FLAG FLAG_READONLY
510#endif
511
512// code-stubs.cc
513DEFINE_bool(print_code_stubs, false, "print code stubs")
514
515// codegen-ia32.cc / codegen-arm.cc
516DEFINE_bool(print_code, false, "print generated code")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100517DEFINE_bool(print_opt_code, false, "print optimized code")
518DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
519 "printing optimized code based on it")
520DEFINE_bool(print_code_verbose, false, "print more information for code")
Steve Blocka7e24c12009-10-30 11:49:00 +0000521DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
522
523// Cleanup...
524#undef FLAG_FULL
525#undef FLAG_READONLY
526#undef FLAG
527
528#undef DEFINE_bool
529#undef DEFINE_int
530#undef DEFINE_string
531
532#undef FLAG_MODE_DECLARE
533#undef FLAG_MODE_DEFINE
534#undef FLAG_MODE_DEFINE_DEFAULTS
535#undef FLAG_MODE_META