blob: f145df75127b3a51c2ceb07c7c8108a14af20e05 [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 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 Murdoch257744e2011-11-30 15:57:28 +000099// Flags for experimental language features.
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000100DEFINE_bool(harmony_typeof, false, "enable harmony semantics for typeof")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000101DEFINE_bool(harmony_scoping, false, "enable harmony block scoping")
Ben Murdoch257744e2011-11-30 15:57:28 +0000102DEFINE_bool(harmony_proxies, false, "enable harmony proxies")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000103DEFINE_bool(harmony_collections, false,
104 "enable harmony collections (sets, maps, and weak maps)")
105DEFINE_bool(harmony, false, "enable all harmony features")
Ben Murdoch257744e2011-11-30 15:57:28 +0000106
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000107// Flags for experimental implementation features.
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000108DEFINE_bool(unbox_double_arrays, true, "automatically unbox arrays of doubles")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000109DEFINE_bool(smi_only_arrays, false, "tracks arrays with only smi values")
110DEFINE_bool(string_slices, true, "use string slices")
111
112DEFINE_bool(clever_optimizations,
113 true,
114 "Optimize object size, Array shift, DOM strings and string +")
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000115
Ben Murdochb0fe1622011-05-05 13:52:32 +0100116// Flags for Crankshaft.
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000117DEFINE_bool(crankshaft, true, "use crankshaft")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100118DEFINE_string(hydrogen_filter, "", "hydrogen use/trace filter")
119DEFINE_bool(use_hydrogen, true, "use generated hydrogen for compilation")
120DEFINE_bool(build_lithium, true, "use lithium chunk builder")
121DEFINE_bool(alloc_lithium, true, "use lithium register allocator")
122DEFINE_bool(use_lithium, true, "use lithium code generator")
123DEFINE_bool(use_range, true, "use hydrogen range analysis")
124DEFINE_bool(eliminate_dead_phis, true, "eliminate dead phis")
125DEFINE_bool(use_gvn, true, "use hydrogen global value numbering")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100126DEFINE_bool(use_canonicalizing, true, "use hydrogen instruction canonicalizing")
127DEFINE_bool(use_inlining, true, "use function inlining")
128DEFINE_bool(limit_inlining, true, "limit code size growth from inlining")
129DEFINE_bool(eliminate_empty_blocks, true, "eliminate empty blocks")
130DEFINE_bool(loop_invariant_code_motion, true, "loop invariant code motion")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000131DEFINE_bool(collect_megamorphic_maps_from_stub_cache,
132 true,
133 "crankshaft harvests type feedback from stub cache")
Steve Block44f0eee2011-05-26 01:26:41 +0100134DEFINE_bool(hydrogen_stats, false, "print statistics for hydrogen")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100135DEFINE_bool(trace_hydrogen, false, "trace generated hydrogen to file")
136DEFINE_bool(trace_inlining, false, "trace inlining decisions")
137DEFINE_bool(trace_alloc, false, "trace register allocator")
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100138DEFINE_bool(trace_all_uses, false, "trace all use positions")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100139DEFINE_bool(trace_range, false, "trace range analysis")
140DEFINE_bool(trace_gvn, false, "trace global value numbering")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100141DEFINE_bool(trace_representation, false, "trace representation types")
142DEFINE_bool(stress_pointer_maps, false, "pointer map for every instruction")
143DEFINE_bool(stress_environments, false, "environment for every instruction")
144DEFINE_int(deopt_every_n_times,
145 0,
146 "deoptimize every n times a deopt point is passed")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100147DEFINE_bool(trap_on_deopt, false, "put a break point before deoptimizing")
148DEFINE_bool(deoptimize_uncommon_cases, true, "deoptimize uncommon cases")
149DEFINE_bool(polymorphic_inlining, true, "polymorphic inlining")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100150DEFINE_bool(use_osr, true, "use on-stack replacement")
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100151
Ben Murdochb0fe1622011-05-05 13:52:32 +0100152DEFINE_bool(trace_osr, false, "trace on-stack replacement")
153DEFINE_int(stress_runs, 0, "number of stress runs")
Ben Murdochb8e0da22011-05-16 14:20:40 +0100154DEFINE_bool(optimize_closures, true, "optimize closures")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100155
Steve Block3ce2e202009-11-05 08:53:23 +0000156// assembler-ia32.cc / assembler-arm.cc / assembler-x64.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000157DEFINE_bool(debug_code, false,
Ben Murdochb0fe1622011-05-05 13:52:32 +0100158 "generate extra code (assertions) for debugging")
159DEFINE_bool(code_comments, false, "emit comments in code disassembly")
Leon Clarkef7060e22010-06-03 12:02:55 +0100160DEFINE_bool(peephole_optimization, true,
161 "perform peephole optimizations in assembly code")
Steve Block3ce2e202009-11-05 08:53:23 +0000162DEFINE_bool(enable_sse2, true,
163 "enable use of SSE2 instructions if available")
164DEFINE_bool(enable_sse3, true,
165 "enable use of SSE3 instructions if available")
Ben Murdochf87a2032010-10-22 12:50:53 +0100166DEFINE_bool(enable_sse4_1, true,
167 "enable use of SSE4.1 instructions if available")
Steve Block3ce2e202009-11-05 08:53:23 +0000168DEFINE_bool(enable_cmov, true,
169 "enable use of CMOV instruction if available")
170DEFINE_bool(enable_rdtsc, true,
171 "enable use of RDTSC instruction if available")
172DEFINE_bool(enable_sahf, true,
173 "enable use of SAHF instruction if available (X64 only)")
Steve Blockd0582a62009-12-15 09:54:21 +0000174DEFINE_bool(enable_vfp3, true,
Ben Murdoch8b112d22011-06-08 16:22:53 +0100175 "enable use of VFP3 instructions if available - this implies "
176 "enabling ARMv7 instructions (ARM only)")
Andrei Popescu31002712010-02-23 13:46:05 +0000177DEFINE_bool(enable_armv7, true,
178 "enable use of ARMv7 instructions if available (ARM only)")
Steve Block44f0eee2011-05-26 01:26:41 +0100179DEFINE_bool(enable_fpu, true,
180 "enable use of MIPS FPU instructions if available (MIPS only)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000181
182// bootstrapper.cc
183DEFINE_string(expose_natives_as, NULL, "expose natives in global object")
184DEFINE_string(expose_debug_as, NULL, "expose debug in global object")
Steve Blocka7e24c12009-10-30 11:49:00 +0000185DEFINE_bool(expose_gc, false, "expose gc extension")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100186DEFINE_bool(expose_externalize_string, false,
187 "expose externalize string extension")
Steve Blocka7e24c12009-10-30 11:49:00 +0000188DEFINE_int(stack_trace_limit, 10, "number of stack frames to capture")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000189DEFINE_bool(builtins_in_stack_traces, false,
190 "show built-in functions in stack traces")
Steve Block6ded16b2010-05-10 14:33:55 +0100191DEFINE_bool(disable_native_files, false, "disable builtin natives files")
Steve Blocka7e24c12009-10-30 11:49:00 +0000192
193// builtins-ia32.cc
194DEFINE_bool(inline_new, true, "use fast inline allocation")
195
196// checks.cc
197DEFINE_bool(stack_trace_on_abort, true,
198 "print a stack trace if an assertion failure occurs")
199
200// codegen-ia32.cc / codegen-arm.cc
201DEFINE_bool(trace, false, "trace function calls")
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800202DEFINE_bool(mask_constants_with_cookie,
203 true,
204 "use random jit cookie to mask large constants")
Steve Blocka7e24c12009-10-30 11:49:00 +0000205
206// codegen.cc
207DEFINE_bool(lazy, true, "use lazy compilation")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100208DEFINE_bool(trace_opt, false, "trace lazy optimization")
209DEFINE_bool(trace_opt_stats, false, "trace lazy optimization statistics")
210DEFINE_bool(opt, true, "use adaptive optimizations")
211DEFINE_bool(opt_eagerly, false, "be more eager when adaptively optimizing")
212DEFINE_bool(always_opt, false, "always try to optimize functions")
213DEFINE_bool(prepare_always_opt, false, "prepare for turning on always opt")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100214DEFINE_bool(deopt, true, "support deoptimization")
215DEFINE_bool(trace_deopt, false, "trace deoptimization")
Steve Blocka7e24c12009-10-30 11:49:00 +0000216
217// compiler.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000218DEFINE_int(min_preparse_length, 1024,
Steve Block3ce2e202009-11-05 08:53:23 +0000219 "minimum length for automatic enable preparsing")
Leon Clarked91b9f72010-01-27 17:25:45 +0000220DEFINE_bool(always_full_compiler, false,
221 "try to use the dedicated run-once backend for all code")
Leon Clarked91b9f72010-01-27 17:25:45 +0000222DEFINE_bool(trace_bailout, false,
223 "print reasons for falling back to using the classic V8 backend")
Steve Blocka7e24c12009-10-30 11:49:00 +0000224
225// compilation-cache.cc
226DEFINE_bool(compilation_cache, true, "enable compilation cache")
227
Steve Block053d10c2011-06-13 19:13:29 +0100228DEFINE_bool(cache_prototype_transitions, true, "cache prototype transitions")
229
Steve Blocka7e24c12009-10-30 11:49:00 +0000230// debug.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000231DEFINE_bool(trace_debug_json, false, "trace debugging JSON request/response")
Steve Blockd0582a62009-12-15 09:54:21 +0000232DEFINE_bool(debugger_auto_break, true,
Steve Blocka7e24c12009-10-30 11:49:00 +0000233 "automatically set the debug break flag when debugger commands are "
Steve Blockd0582a62009-12-15 09:54:21 +0000234 "in the queue")
Steve Block6ded16b2010-05-10 14:33:55 +0100235DEFINE_bool(enable_liveedit, true, "enable liveedit experimental feature")
Steve Blocka7e24c12009-10-30 11:49:00 +0000236
Steve Block1e0659c2011-05-24 12:43:12 +0100237// execution.cc
238DEFINE_int(stack_size, kPointerSize * 128,
239 "default size of stack region v8 is allowed to use (in KkBytes)")
240
Steve Blocka7e24c12009-10-30 11:49:00 +0000241// frames.cc
242DEFINE_int(max_stack_trace_source_length, 300,
243 "maximum length of function source code printed in a stack trace.")
244
Kristian Monsen0d5e1162010-09-30 15:31:59 +0100245// full-codegen.cc
246DEFINE_bool(always_inline_smi_code, false,
247 "always inline smi code in non-opt code")
248
Steve Blocka7e24c12009-10-30 11:49:00 +0000249// heap.cc
Ben Murdochf87a2032010-10-22 12:50:53 +0100250DEFINE_int(max_new_space_size, 0, "max size of the new generation (in kBytes)")
251DEFINE_int(max_old_space_size, 0, "max size of the old generation (in Mbytes)")
Russell Brenner90bac252010-11-18 13:33:46 -0800252DEFINE_int(max_executable_size, 0, "max size of executable memory (in Mbytes)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000253DEFINE_bool(gc_global, false, "always perform global GCs")
254DEFINE_int(gc_interval, -1, "garbage collect after <n> allocations")
255DEFINE_bool(trace_gc, false,
256 "print one trace line following each garbage collection")
Leon Clarkef7060e22010-06-03 12:02:55 +0100257DEFINE_bool(trace_gc_nvp, false,
258 "print one detailed trace line in name=value format "
259 "after each garbage collection")
260DEFINE_bool(print_cumulative_gc_stat, false,
261 "print cumulative GC statistics in name=value format on exit")
Steve Blocka7e24c12009-10-30 11:49:00 +0000262DEFINE_bool(trace_gc_verbose, false,
263 "print more details following each garbage collection")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000264DEFINE_bool(trace_fragmentation, false,
265 "report fragmentation for old pointer and data pages")
Steve Blocka7e24c12009-10-30 11:49:00 +0000266DEFINE_bool(collect_maps, true,
267 "garbage collect maps from which no objects can be reached")
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100268DEFINE_bool(flush_code, true,
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100269 "flush code that we expect not to use again before full gc")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000270DEFINE_bool(incremental_marking, true, "use incremental marking")
271DEFINE_bool(incremental_marking_steps, true, "do incremental marking steps")
272DEFINE_bool(trace_incremental_marking, false,
273 "trace progress of the incremental marking")
Steve Blocka7e24c12009-10-30 11:49:00 +0000274
275// v8.cc
276DEFINE_bool(use_idle_notification, true,
277 "Use idle notification to reduce memory footprint.")
278// ic.cc
279DEFINE_bool(use_ic, true, "use inline caching")
280
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100281#ifdef LIVE_OBJECT_LIST
282// liveobjectlist.cc
283DEFINE_string(lol_workdir, NULL, "path for lol temp files")
284DEFINE_bool(verify_lol, false, "perform debugging verification for lol")
285#endif
286
Steve Blocka7e24c12009-10-30 11:49:00 +0000287// macro-assembler-ia32.cc
288DEFINE_bool(native_code_counters, false,
289 "generate extra code for manipulating stats counters")
290
291// mark-compact.cc
292DEFINE_bool(always_compact, false, "Perform compaction on every full GC")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000293DEFINE_bool(lazy_sweeping, true,
294 "Use lazy sweeping for old pointer and data spaces")
295DEFINE_bool(cleanup_caches_in_maps_at_gc, true,
296 "Flush code caches in maps during mark compact cycle.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000297DEFINE_bool(never_compact, false,
298 "Never perform compaction on full GC - testing only")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000299DEFINE_bool(compact_code_space, false, "Compact code space")
Ben Murdoch257744e2011-11-30 15:57:28 +0000300DEFINE_bool(cleanup_code_caches_at_gc, true,
301 "Flush inline caches prior to mark compact collection and "
302 "flush code caches in maps during mark compact cycle.")
Steve Block6ded16b2010-05-10 14:33:55 +0100303DEFINE_int(random_seed, 0,
304 "Default seed for initializing random generator "
305 "(0, the default, means to use system random).")
Steve Blocka7e24c12009-10-30 11:49:00 +0000306
307DEFINE_bool(canonicalize_object_literal_maps, true,
308 "Canonicalize maps for object literals.")
309
Leon Clarked91b9f72010-01-27 17:25:45 +0000310DEFINE_int(max_map_space_pages, MapSpace::kMaxMapPageIndex - 1,
311 "Maximum number of pages in map space which still allows to encode "
312 "forwarding pointers. That's actually a constant, but it's useful "
313 "to control it with a flag for better testing.")
314
Steve Blocka7e24c12009-10-30 11:49:00 +0000315// mksnapshot.cc
316DEFINE_bool(h, false, "print this message")
Steve Blockd0582a62009-12-15 09:54:21 +0000317DEFINE_bool(new_snapshot, true, "use new snapshot implementation")
Steve Blocka7e24c12009-10-30 11:49:00 +0000318
Ben Murdochb0fe1622011-05-05 13:52:32 +0100319// objects.cc
320DEFINE_bool(use_verbose_printer, true, "allows verbose printing")
321
Steve Blocka7e24c12009-10-30 11:49:00 +0000322// parser.cc
323DEFINE_bool(allow_natives_syntax, false, "allow natives syntax")
324
Andrei Popescu31002712010-02-23 13:46:05 +0000325// simulator-arm.cc and simulator-mips.cc
Steve Block6ded16b2010-05-10 14:33:55 +0100326DEFINE_bool(trace_sim, false, "Trace simulator execution")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000327DEFINE_bool(check_icache, false,
328 "Check icache flushes in ARM and MIPS simulator")
Steve Blocka7e24c12009-10-30 11:49:00 +0000329DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions")
Steve Block6ded16b2010-05-10 14:33:55 +0100330DEFINE_int(sim_stack_alignment, 8,
331 "Stack alingment in bytes in simulator (4 or 8, 8 is default)")
Steve Blocka7e24c12009-10-30 11:49:00 +0000332
Ben Murdoch257744e2011-11-30 15:57:28 +0000333// isolate.cc
Steve Blocka7e24c12009-10-30 11:49:00 +0000334DEFINE_bool(trace_exception, false,
335 "print stack trace when throwing exceptions")
336DEFINE_bool(preallocate_message_memory, false,
337 "preallocate some memory to build stack traces.")
338
Steve Blocka7e24c12009-10-30 11:49:00 +0000339// v8.cc
340DEFINE_bool(preemption, false,
341 "activate a 100ms timer that switches between V8 threads")
342
343// Regexp
Steve Blocka7e24c12009-10-30 11:49:00 +0000344DEFINE_bool(regexp_optimization, true, "generate optimized regexp code")
345
346// Testing flags test/cctest/test-{flags,api,serialization}.cc
347DEFINE_bool(testing_bool_flag, true, "testing_bool_flag")
348DEFINE_int(testing_int_flag, 13, "testing_int_flag")
349DEFINE_float(testing_float_flag, 2.5, "float-flag")
350DEFINE_string(testing_string_flag, "Hello, world!", "string-flag")
351DEFINE_int(testing_prng_seed, 42, "Seed used for threading test randomness")
352#ifdef WIN32
353DEFINE_string(testing_serialization_file, "C:\\Windows\\Temp\\serdes",
354 "file in which to testing_serialize heap")
355#else
356DEFINE_string(testing_serialization_file, "/tmp/serdes",
357 "file in which to serialize heap")
358#endif
359
360//
361// Dev shell flags
362//
363
364DEFINE_bool(help, false, "Print usage message, including flags, on console")
365DEFINE_bool(dump_counters, false, "Dump counters on exit")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000366
367#ifdef ENABLE_DEBUGGER_SUPPORT
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100368DEFINE_bool(debugger, false, "Enable JavaScript debugger")
Steve Blocka7e24c12009-10-30 11:49:00 +0000369DEFINE_bool(remote_debugger, false, "Connect JavaScript debugger to the "
370 "debugger agent in another process")
371DEFINE_bool(debugger_agent, false, "Enable debugger agent")
372DEFINE_int(debugger_port, 5858, "Port to use for remote debugging")
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000373#endif // ENABLE_DEBUGGER_SUPPORT
374
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100375DEFINE_string(map_counters, "", "Map counters to a file")
Steve Blocka7e24c12009-10-30 11:49:00 +0000376DEFINE_args(js_arguments, JSArguments(),
377 "Pass all remaining arguments to the script. Alias for \"--\".")
378
Ben Murdoch086aeea2011-05-13 15:57:08 +0100379#if defined(WEBOS__)
380DEFINE_bool(debug_compile_events, false, "Enable debugger compile events")
381DEFINE_bool(debug_script_collected_events, false,
382 "Enable debugger script collected events")
383#else
384DEFINE_bool(debug_compile_events, true, "Enable debugger compile events")
385DEFINE_bool(debug_script_collected_events, true,
386 "Enable debugger script collected events")
387#endif
388
Ben Murdochb8e0da22011-05-16 14:20:40 +0100389
390//
391// GDB JIT integration flags.
392//
393
394DEFINE_bool(gdbjit, false, "enable GDBJIT interface (disables compacting GC)")
395DEFINE_bool(gdbjit_full, false, "enable GDBJIT interface for all code objects")
Ben Murdoche0cee9b2011-05-25 10:26:03 +0100396DEFINE_bool(gdbjit_dump, false, "dump elf objects with debug info to disk")
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000397DEFINE_string(gdbjit_dump_filter, "",
398 "dump only objects containing this substring")
Ben Murdochb8e0da22011-05-16 14:20:40 +0100399
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000400// mark-compact.cc
401DEFINE_bool(force_marking_deque_overflows, false,
402 "force overflows of marking deque by reducing it's size "
403 "to 64 words")
404
405DEFINE_bool(stress_compaction, false,
406 "stress the GC compactor to flush out bugs (implies "
407 "--force_marking_deque_overflows)")
408
Steve Blocka7e24c12009-10-30 11:49:00 +0000409//
410// Debug only flags
411//
412#undef FLAG
413#ifdef DEBUG
414#define FLAG FLAG_FULL
415#else
416#define FLAG FLAG_READONLY
417#endif
418
419// checks.cc
420DEFINE_bool(enable_slow_asserts, false,
421 "enable asserts that are slow to execute")
422
423// codegen-ia32.cc / codegen-arm.cc
424DEFINE_bool(trace_codegen, false,
425 "print name of functions for which code is generated")
426DEFINE_bool(print_source, false, "pretty print source code")
427DEFINE_bool(print_builtin_source, false,
428 "pretty print source code for builtins")
429DEFINE_bool(print_ast, false, "print source AST")
430DEFINE_bool(print_builtin_ast, false, "print source AST for builtins")
Steve Block3ce2e202009-11-05 08:53:23 +0000431DEFINE_bool(print_json_ast, false, "print source AST as JSON")
432DEFINE_bool(print_builtin_json_ast, false,
433 "print source AST for builtins as JSON")
Steve Blocka7e24c12009-10-30 11:49:00 +0000434DEFINE_string(stop_at, "", "function name where to insert a breakpoint")
435
436// compiler.cc
437DEFINE_bool(print_builtin_scopes, false, "print scopes for builtins")
438DEFINE_bool(print_scopes, false, "print scopes")
439
440// contexts.cc
441DEFINE_bool(trace_contexts, false, "trace contexts operations")
442
443// heap.cc
444DEFINE_bool(gc_greedy, false, "perform GC prior to some allocations")
445DEFINE_bool(gc_verbose, false, "print stuff during garbage collection")
446DEFINE_bool(heap_stats, false, "report heap statistics before and after GC")
447DEFINE_bool(code_stats, false, "report code statistics after GC")
448DEFINE_bool(verify_heap, false, "verify heap pointers before and after GC")
449DEFINE_bool(print_handles, false, "report handles after GC")
450DEFINE_bool(print_global_handles, false, "report global handles after GC")
Steve Blocka7e24c12009-10-30 11:49:00 +0000451
452// ic.cc
453DEFINE_bool(trace_ic, false, "trace inline cache state transitions")
454
455// objects.cc
456DEFINE_bool(trace_normalization,
457 false,
458 "prints when objects are turned into dictionaries.")
459
460// runtime.cc
461DEFINE_bool(trace_lazy, false, "trace lazy compilation")
462
463// serialize.cc
464DEFINE_bool(debug_serialization, false,
465 "write debug information into the snapshot.")
466
467// spaces.cc
468DEFINE_bool(collect_heap_spill_statistics, false,
469 "report heap spill statistics along with heap_stats "
470 "(requires heap_stats)")
471
Steve Block44f0eee2011-05-26 01:26:41 +0100472DEFINE_bool(trace_isolates, false, "trace isolate state changes")
473
Ben Murdochb0fe1622011-05-05 13:52:32 +0100474// VM state
475DEFINE_bool(log_state_changes, false, "Log state changes.")
476
Steve Blocka7e24c12009-10-30 11:49:00 +0000477// Regexp
Leon Clarkee46be812010-01-19 14:06:41 +0000478DEFINE_bool(regexp_possessive_quantifier,
479 false,
480 "enable possessive quantifier syntax for testing")
Steve Blocka7e24c12009-10-30 11:49:00 +0000481DEFINE_bool(trace_regexp_bytecodes, false, "trace regexp bytecode execution")
482DEFINE_bool(trace_regexp_assembler,
483 false,
484 "trace regexp macro assembler calls.")
485
486//
Ben Murdoch3fb3ca82011-12-02 17:19:32 +0000487// Logging and profiling flags
Steve Blocka7e24c12009-10-30 11:49:00 +0000488//
489#undef FLAG
Steve Blocka7e24c12009-10-30 11:49:00 +0000490#define FLAG FLAG_FULL
Steve Blocka7e24c12009-10-30 11:49:00 +0000491
492// log.cc
493DEFINE_bool(log, false,
494 "Minimal logging (no API, code, GC, suspect, or handles samples).")
495DEFINE_bool(log_all, false, "Log all events to the log file.")
496DEFINE_bool(log_runtime, false, "Activate runtime system %Log call.")
497DEFINE_bool(log_api, false, "Log API events to the log file.")
498DEFINE_bool(log_code, false,
499 "Log code events to the log file without profiling.")
500DEFINE_bool(log_gc, false,
501 "Log heap samples on garbage collection for the hp2ps tool.")
502DEFINE_bool(log_handles, false, "Log global handle events.")
Leon Clarkee46be812010-01-19 14:06:41 +0000503DEFINE_bool(log_snapshot_positions, false,
504 "log positions of (de)serialized objects in the snapshot.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000505DEFINE_bool(log_suspect, false, "Log suspect operations.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000506DEFINE_bool(prof, false,
507 "Log statistical profiling information (implies --log-code).")
508DEFINE_bool(prof_auto, true,
509 "Used with --prof, starts profiling automatically")
510DEFINE_bool(prof_lazy, false,
511 "Used with --prof, only does sampling and logging"
512 " when profiler is active (implies --noprof_auto).")
Steve Block6ded16b2010-05-10 14:33:55 +0100513DEFINE_bool(prof_browser_mode, true,
514 "Used with --prof, turns on browser-compatible mode for profiling.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000515DEFINE_bool(log_regexp, false, "Log regular expression execution.")
516DEFINE_bool(sliding_state_window, false,
517 "Update sliding state window counters.")
Andrei Popescu402d9372010-02-26 13:31:12 +0000518DEFINE_string(logfile, "v8.log", "Specify the name of the log file.")
Ben Murdochf87a2032010-10-22 12:50:53 +0100519DEFINE_bool(ll_prof, false, "Enable low-level linux profiler.")
Steve Blocka7e24c12009-10-30 11:49:00 +0000520
521//
Steve Blocka7e24c12009-10-30 11:49:00 +0000522// Disassembler only flags
523//
524#undef FLAG
525#ifdef ENABLE_DISASSEMBLER
526#define FLAG FLAG_FULL
527#else
528#define FLAG FLAG_READONLY
529#endif
530
Ben Murdoch592a9fc2012-03-05 11:04:45 +0000531// elements.cc
532DEFINE_bool(trace_elements_transitions, false, "trace elements transitions")
533
Steve Blocka7e24c12009-10-30 11:49:00 +0000534// code-stubs.cc
535DEFINE_bool(print_code_stubs, false, "print code stubs")
536
537// codegen-ia32.cc / codegen-arm.cc
538DEFINE_bool(print_code, false, "print generated code")
Ben Murdochb0fe1622011-05-05 13:52:32 +0100539DEFINE_bool(print_opt_code, false, "print optimized code")
540DEFINE_bool(print_unopt_code, false, "print unoptimized code before "
541 "printing optimized code based on it")
542DEFINE_bool(print_code_verbose, false, "print more information for code")
Steve Blocka7e24c12009-10-30 11:49:00 +0000543DEFINE_bool(print_builtin_code, false, "print generated code for builtins")
544
545// Cleanup...
546#undef FLAG_FULL
547#undef FLAG_READONLY
548#undef FLAG
549
550#undef DEFINE_bool
551#undef DEFINE_int
552#undef DEFINE_string
553
554#undef FLAG_MODE_DECLARE
555#undef FLAG_MODE_DEFINE
556#undef FLAG_MODE_DEFINE_DEFAULTS
557#undef FLAG_MODE_META