OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 | 293 |
294 // mksnapshot.cc | 294 // mksnapshot.cc |
295 DEFINE_bool(h, false, "print this message") | 295 DEFINE_bool(h, false, "print this message") |
296 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") | 296 DEFINE_bool(new_snapshot, true, "use new snapshot implementation") |
297 | 297 |
298 // objects.cc | 298 // objects.cc |
299 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") | 299 DEFINE_bool(use_verbose_printer, true, "allows verbose printing") |
300 | 300 |
301 // parser.cc | 301 // parser.cc |
302 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") | 302 DEFINE_bool(allow_natives_syntax, false, "allow natives syntax") |
| 303 DEFINE_bool(strict_mode, true, "allow strict mode directives") |
303 | 304 |
304 // rewriter.cc | 305 // rewriter.cc |
305 DEFINE_bool(optimize_ast, true, "optimize the ast") | 306 DEFINE_bool(optimize_ast, true, "optimize the ast") |
306 | 307 |
307 // simulator-arm.cc and simulator-mips.cc | 308 // simulator-arm.cc and simulator-mips.cc |
308 DEFINE_bool(trace_sim, false, "Trace simulator execution") | 309 DEFINE_bool(trace_sim, false, "Trace simulator execution") |
309 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") | 310 DEFINE_bool(check_icache, false, "Check icache flushes in ARM simulator") |
310 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") | 311 DEFINE_int(stop_sim_at, 0, "Simulator stop after x number of instructions") |
311 DEFINE_int(sim_stack_alignment, 8, | 312 DEFINE_int(sim_stack_alignment, 8, |
312 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") | 313 "Stack alingment in bytes in simulator (4 or 8, 8 is default)") |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
526 #undef FLAG | 527 #undef FLAG |
527 | 528 |
528 #undef DEFINE_bool | 529 #undef DEFINE_bool |
529 #undef DEFINE_int | 530 #undef DEFINE_int |
530 #undef DEFINE_string | 531 #undef DEFINE_string |
531 | 532 |
532 #undef FLAG_MODE_DECLARE | 533 #undef FLAG_MODE_DECLARE |
533 #undef FLAG_MODE_DEFINE | 534 #undef FLAG_MODE_DEFINE |
534 #undef FLAG_MODE_DEFINE_DEFAULTS | 535 #undef FLAG_MODE_DEFINE_DEFAULTS |
535 #undef FLAG_MODE_META | 536 #undef FLAG_MODE_META |
OLD | NEW |